Upload upstream chromium 108.0.5359.1
[platform/framework/web/chromium-efl.git] / fuchsia_web / cast_streaming / BUILD.gn
1 # Copyright 2022 The Chromium Authors
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 assert(is_fuchsia)
6
7 # Only allow use by CastRunner, WebEngineShell, and CastStreamingShell targets.
8 visibility = [
9   "//fuchsia_web/runners:cast_runner_core",
10   "//fuchsia_web/shell/*",
11 ]
12
13 source_set("cast_streaming") {
14   sources = [ "cast_streaming.cc" ]
15   public = [ "cast_streaming.h" ]
16   data = [ "data/receiver.html" ]
17   deps = [
18     "//base",
19     "//third_party/fuchsia-sdk/sdk/fidl/fuchsia.web",
20   ]
21 }