OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//media/media_options.gni") | 7 import("//media/media_options.gni") |
| 8 import("//printing/features/features.gni") |
8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
9 | 10 |
10 source_set("browser") { | 11 source_set("browser") { |
11 # Only the public target should depend on this. All other targets (even | 12 # Only the public target should depend on this. All other targets (even |
12 # internal content ones) should depend on the public one. | 13 # internal content ones) should depend on the public one. |
13 visibility = [ | 14 visibility = [ |
14 ":for_content_tests", # See top of //content/BUILD.gn for why. | 15 ":for_content_tests", # See top of //content/BUILD.gn for why. |
15 "//content/public/browser:browser_sources", | 16 "//content/public/browser:browser_sources", |
16 ] | 17 ] |
17 if (is_android) { | 18 if (is_android) { |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 "//media/mojo/interfaces", | 86 "//media/mojo/interfaces", |
86 "//media/mojo/interfaces:image_capture", | 87 "//media/mojo/interfaces:image_capture", |
87 "//mojo/common", | 88 "//mojo/common", |
88 "//mojo/edk/system", | 89 "//mojo/edk/system", |
89 "//mojo/public/cpp/bindings", | 90 "//mojo/public/cpp/bindings", |
90 "//mojo/public/js", | 91 "//mojo/public/js", |
91 "//net", | 92 "//net", |
92 "//net:extras", | 93 "//net:extras", |
93 "//net:http_server", | 94 "//net:http_server", |
94 "//ppapi/features", | 95 "//ppapi/features", |
| 96 "//printing/features", |
95 "//services/device:lib", | 97 "//services/device:lib", |
96 "//services/device/public/cpp", | 98 "//services/device/public/cpp", |
97 "//services/file:lib", | 99 "//services/file:lib", |
98 "//services/file/public/cpp", | 100 "//services/file/public/cpp", |
99 "//services/file/public/interfaces", | 101 "//services/file/public/interfaces", |
100 "//services/service_manager", | 102 "//services/service_manager", |
101 "//services/service_manager/public/cpp", | 103 "//services/service_manager/public/cpp", |
102 "//services/service_manager/public/interfaces", | 104 "//services/service_manager/public/interfaces", |
103 "//services/service_manager/runner/common", | 105 "//services/service_manager/runner/common", |
104 "//services/service_manager/runner/host:lib", | 106 "//services/service_manager/runner/host:lib", |
(...skipping 1840 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1945 if (!is_component_build) { | 1947 if (!is_component_build) { |
1946 public_deps = [ | 1948 public_deps = [ |
1947 ":browser", | 1949 ":browser", |
1948 ] | 1950 ] |
1949 } else { | 1951 } else { |
1950 public_deps = [ | 1952 public_deps = [ |
1951 "//third_party/leveldatabase", | 1953 "//third_party/leveldatabase", |
1952 ] | 1954 ] |
1953 } | 1955 } |
1954 } | 1956 } |
OLD | NEW |