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") | |
8 import("//media/media_options.gni") | 7 import("//media/media_options.gni") |
9 import("//ppapi/features/features.gni") | 8 import("//ppapi/features/features.gni") |
10 import("//printing/features/features.gni") | 9 import("//printing/features/features.gni") |
11 import("//third_party/WebKit/public/public_features.gni") | 10 import("//third_party/WebKit/public/public_features.gni") |
12 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 11 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
13 | 12 |
14 source_set("browser") { | 13 source_set("browser") { |
15 # Only the public target should depend on this. All other targets (even | 14 # Only the public target should depend on this. All other targets (even |
16 # internal content ones) should depend on the public one. | 15 # internal content ones) should depend on the public one. |
17 visibility = [ | 16 visibility = [ |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 "//device/screen_orientation/public/interfaces", | 76 "//device/screen_orientation/public/interfaces", |
78 "//device/sensors", | 77 "//device/sensors", |
79 "//device/vibration", | 78 "//device/vibration", |
80 "//device/vr", | 79 "//device/vr", |
81 "//device/wake_lock", | 80 "//device/wake_lock", |
82 "//google_apis", | 81 "//google_apis", |
83 "//gpu", | 82 "//gpu", |
84 "//gpu/command_buffer/client:gles2_implementation", | 83 "//gpu/command_buffer/client:gles2_implementation", |
85 "//gpu/command_buffer/client:gles2_interface", | 84 "//gpu/command_buffer/client:gles2_interface", |
86 "//gpu/ipc/host", | 85 "//gpu/ipc/host", |
87 "//gpu/vulkan:features", | |
88 "//ipc", | 86 "//ipc", |
89 "//media", | 87 "//media", |
90 "//media/capture", | 88 "//media/capture", |
91 "//media/capture/mojo:image_capture", | 89 "//media/capture/mojo:image_capture", |
92 "//media/gpu/ipc/client", | 90 "//media/gpu/ipc/client", |
93 "//media/midi", | 91 "//media/midi", |
94 "//media/midi:mojo", | 92 "//media/midi:mojo", |
95 "//media/mojo/interfaces", | 93 "//media/mojo/interfaces", |
96 "//mojo/common", | 94 "//mojo/common", |
97 "//mojo/edk/system", | 95 "//mojo/edk/system", |
(...skipping 1938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2036 if (!is_component_build) { | 2034 if (!is_component_build) { |
2037 public_deps = [ | 2035 public_deps = [ |
2038 ":browser", | 2036 ":browser", |
2039 ] | 2037 ] |
2040 } else { | 2038 } else { |
2041 public_deps = [ | 2039 public_deps = [ |
2042 "//third_party/leveldatabase", | 2040 "//third_party/leveldatabase", |
2043 ] | 2041 ] |
2044 } | 2042 } |
2045 } | 2043 } |
OLD | NEW |