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