File: BUILD.gn

package info (click to toggle)
chromium 141.0.7390.107-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,246,132 kB
  • sloc: cpp: 35,264,965; ansic: 7,169,920; javascript: 4,250,185; python: 1,460,635; asm: 950,788; xml: 751,751; pascal: 187,972; sh: 89,459; perl: 88,691; objc: 79,953; sql: 53,924; cs: 44,622; fortran: 24,137; makefile: 22,313; tcl: 15,277; php: 14,018; yacc: 8,995; ruby: 7,553; awk: 3,720; lisp: 3,096; lex: 1,330; ada: 727; jsp: 228; sed: 36
file content (123 lines) | stat: -rw-r--r-- 3,697 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# Copyright 2022 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import("//build/config/cast.gni")

if (enable_cast_receiver) {
  source_set("browser") {
    public = [
      "public/application_config.h",
      "public/application_state_observer.h",
      "public/content_browser_client_mixins.h",
      "public/content_window_controls.h",
      "public/embedder_application.h",
      "public/message_port_service.h",
      "public/runtime_application.h",
      "public/runtime_application_dispatcher.h",
      "public/streaming_config_manager.h",
    ]
    sources = [
      "application_client.cc",
      "application_client.h",
      "application_config.cc",
      "bindings_manager.cc",
      "bindings_manager.h",
      "bindings_message_port_connector.cc",
      "bindings_message_port_connector.h",
      "content_browser_client_mixins_impl.cc",
      "content_browser_client_mixins_impl.h",
      "content_window_controls.cc",
      "embedder_application.cc",
      "page_state_observer.cc",
      "page_state_observer.h",
      "runtime_application.cc",
      "runtime_application_base.cc",
      "runtime_application_base.h",
      "runtime_application_dispatcher_impl.h",
      "streaming_config_manager.cc",
      "streaming_controller.h",
      "streaming_controller_base.cc",
      "streaming_controller_base.h",
      "streaming_controller_mirroring.cc",
      "streaming_controller_mirroring.h",
      "streaming_controller_remoting.cc",
      "streaming_controller_remoting.h",
      "streaming_receiver_session_client.cc",
      "streaming_receiver_session_client.h",
      "streaming_runtime_application.cc",
      "streaming_runtime_application.h",
      "web_runtime_application.cc",
      "web_runtime_application.h",
    ]
    public_deps = [
      "//components/cast_streaming/browser",
      "//third_party/blink/public/common:headers",
    ]
    deps = [
      ":permissions_manager",
      "//base",
      "//components/cast/api_bindings:manager",
      "//components/cast/message_port",
      "//components/cast/message_port:blink_message_port_adapter",
      "//components/cast/message_port:message_port_cast",
      "//components/cast/named_message_port_connector",
      "//components/cast_receiver/common",
      "//components/cast_streaming/common",
      "//components/cast_streaming/common:mojom",
      "//components/media_control/browser",
      "//components/on_load_script_injector/browser",
      "//components/url_rewrite/browser",
      "//components/url_rewrite/common",
      "//components/url_rewrite/mojom",
      "//content/public/browser",
      "//content/public/common",
      "//media",
      "//media/mojo/mojom",
      "//mojo/public/cpp/bindings",
      "//net",
      "//third_party/abseil-cpp:absl",
      "//ui/base",
      "//url",
    ]
    friend = [ ":unit_tests" ]
  }
}

source_set("permissions_manager") {
  public = [ "public/permissions_manager.h" ]
  sources = [
    "permissions_manager_impl.cc",
    "permissions_manager_impl.h",
  ]
  public_deps = [
    "//third_party/blink/public/common:headers",
    "//url",
  ]
  deps = [
    "//base",
    "//content",
  ]
  friend = [ ":unit_tests" ]
  if (enable_cast_receiver) {
    friend += [ ":browser" ]
  }
}

source_set("unit_tests") {
  testonly = true
  sources = [ "permissions_manager_impl_unittest.cc" ]
  deps = [
    ":permissions_manager",
    "//base/test:test_support",
    "//media",
    "//testing/gmock",
    "//testing/gtest",
    "//ui/gfx/geometry",
  ]

  if (enable_cast_receiver) {
    deps += [ ":browser" ]
    sources += [ "streaming_receiver_session_client_unittest.cc" ]
  }
}