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("//ppapi/features/features.gni") | 7 import("//ppapi/features/features.gni") |
8 import("//third_party/WebKit/public/public_features.gni") | 8 import("//third_party/WebKit/public/public_features.gni") |
9 | 9 |
10 if (is_component_build) { | 10 if (is_component_build) { |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 "worker_thread_message_filter.cc", | 205 "worker_thread_message_filter.cc", |
206 "worker_thread_message_filter.h", | 206 "worker_thread_message_filter.h", |
207 "worker_thread_registry.cc", | 207 "worker_thread_registry.cc", |
208 "worker_thread_registry.h", | 208 "worker_thread_registry.h", |
209 ] | 209 ] |
210 | 210 |
211 configs += [ "//build/config:precompiled_headers" ] | 211 configs += [ "//build/config:precompiled_headers" ] |
212 | 212 |
213 public_deps = [ | 213 public_deps = [ |
214 "//gpu/ipc/client:client", | 214 "//gpu/ipc/client:client", |
215 "//services/service_manager/public/interfaces:interfaces_blink", | |
216 ] | 215 ] |
217 | 216 |
218 deps = [ | 217 deps = [ |
219 "//base", | 218 "//base", |
220 "//components/discardable_memory/client", | 219 "//components/discardable_memory/client", |
221 "//components/discardable_memory/public/interfaces", | 220 "//components/discardable_memory/public/interfaces", |
222 "//components/mime_util", | 221 "//components/mime_util", |
223 "//components/tracing", | 222 "//components/tracing", |
224 "//components/tracing:startup_tracing", | 223 "//components/tracing:startup_tracing", |
225 "//components/webcrypto", | 224 "//components/webcrypto", |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 | 290 |
292 # See comment at the top of //content/BUILD.gn for how this works. | 291 # See comment at the top of //content/BUILD.gn for how this works. |
293 group("for_content_tests") { | 292 group("for_content_tests") { |
294 visibility = [ "//content/test/*" ] | 293 visibility = [ "//content/test/*" ] |
295 if (!is_component_build) { | 294 if (!is_component_build) { |
296 public_deps = [ | 295 public_deps = [ |
297 ":child", | 296 ":child", |
298 ] | 297 ] |
299 } | 298 } |
300 } | 299 } |
OLD | NEW |