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