BUILD.gn 549 B

123456789101112131415161718192021
  1. # Copyright 2020 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. import("//build/config/features.gni")
  5. import("//mojo/public/tools/bindings/mojom.gni")
  6. source_set("manager") {
  7. sources = [
  8. "manager.cc",
  9. "manager.h",
  10. "scoped_api_binding.cc",
  11. "scoped_api_binding.h",
  12. ]
  13. deps = [
  14. "//base",
  15. "//components/cast:export",
  16. ]
  17. defines = [ "CAST_COMPONENT_IMPLEMENTATION" ]
  18. public_deps = [ "//components/cast/message_port" ]
  19. }