| 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", |
| 215 ] | 216 ] |
| 216 | 217 |
| 217 deps = [ | 218 deps = [ |
| 218 "//base", | 219 "//base", |
| 219 "//components/discardable_memory/client", | 220 "//components/discardable_memory/client", |
| 220 "//components/discardable_memory/public/interfaces", | 221 "//components/discardable_memory/public/interfaces", |
| 221 "//components/mime_util", | 222 "//components/mime_util", |
| 222 "//components/tracing", | 223 "//components/tracing", |
| 223 "//components/tracing:startup_tracing", | 224 "//components/tracing:startup_tracing", |
| 224 "//components/webcrypto", | 225 "//components/webcrypto", |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 | 291 |
| 291 # See comment at the top of //content/BUILD.gn for how this works. | 292 # See comment at the top of //content/BUILD.gn for how this works. |
| 292 group("for_content_tests") { | 293 group("for_content_tests") { |
| 293 visibility = [ "//content/test/*" ] | 294 visibility = [ "//content/test/*" ] |
| 294 if (!is_component_build) { | 295 if (!is_component_build) { |
| 295 public_deps = [ | 296 public_deps = [ |
| 296 ":child", | 297 ":child", |
| 297 ] | 298 ] |
| 298 } | 299 } |
| 299 } | 300 } |
| OLD | NEW |