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("//gpu/vulkan/features.gni") | 7 import("//gpu/vulkan/features.gni") |
8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
9 import("//ppapi/features/features.gni") | 9 import("//ppapi/features/features.gni") |
10 import("//printing/features/features.gni") | 10 import("//printing/features/features.gni") |
11 import("//third_party/WebKit/public/public_features.gni") | 11 import("//third_party/WebKit/public/public_features.gni") |
12 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 12 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
13 | 13 |
14 source_set("browser") { | 14 source_set("browser") { |
15 # Only the public target should depend on this. All other targets (even | 15 # Only the public target should depend on this. All other targets (even |
16 # internal content ones) should depend on the public one. | 16 # internal content ones) should depend on the public one. |
17 visibility = [ | 17 visibility = [ |
18 ":for_content_tests", # See top of //content/BUILD.gn for why. | 18 ":for_content_tests", # See top of //content/BUILD.gn for why. |
19 "//content/app:*", | 19 "//content/app:*", |
20 "//content/public/browser:browser_sources", | 20 "//content/public/browser:browser_sources", |
21 "//content/browser/download:*", | |
Dmitry Titov
2017/03/23 17:34:10
This is a strange dependency, runs counter the com
Pete Williamson
2017/03/23 20:26:38
This is leftover cruft from an earlier try, remove
| |
21 ] | 22 ] |
22 | 23 |
23 configs += [ | 24 configs += [ |
24 "//build/config:precompiled_headers", | 25 "//build/config:precompiled_headers", |
25 "//content:content_implementation", | 26 "//content:content_implementation", |
26 "//v8:external_startup_data", | 27 "//v8:external_startup_data", |
27 ] | 28 ] |
28 defines = [] | 29 defines = [] |
29 libs = [] | 30 libs = [] |
30 ldflags = [] | 31 ldflags = [] |
(...skipping 2024 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2055 if (!is_component_build) { | 2056 if (!is_component_build) { |
2056 public_deps = [ | 2057 public_deps = [ |
2057 ":browser", | 2058 ":browser", |
2058 ] | 2059 ] |
2059 } else { | 2060 } else { |
2060 public_deps = [ | 2061 public_deps = [ |
2061 "//third_party/leveldatabase", | 2062 "//third_party/leveldatabase", |
2062 ] | 2063 ] |
2063 } | 2064 } |
2064 } | 2065 } |
OLD | NEW |