BUILD.gn 572 B

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