| 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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "//services/service_manager/public/interfaces:interfaces_blink", |
| 220 ] | 220 ] |
| 221 | 221 |
| 222 deps = [ | 222 deps = [ |
| 223 "//base", | 223 "//base", |
| 224 "//cc/paint", |
| 224 "//components/discardable_memory/client", | 225 "//components/discardable_memory/client", |
| 225 "//components/discardable_memory/public/interfaces", | 226 "//components/discardable_memory/public/interfaces", |
| 226 "//components/mime_util", | 227 "//components/mime_util", |
| 227 "//components/tracing", | 228 "//components/tracing", |
| 228 "//components/tracing:startup_tracing", | 229 "//components/tracing:startup_tracing", |
| 229 "//components/webcrypto", | 230 "//components/webcrypto", |
| 230 "//content/app/resources", | 231 "//content/app/resources", |
| 231 "//content/app/strings", | 232 "//content/app/strings", |
| 232 "//content/common", | 233 "//content/common", |
| 233 "//content/public/common:common_sources", | 234 "//content/public/common:common_sources", |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 | 296 |
| 296 # See comment at the top of //content/BUILD.gn for how this works. | 297 # See comment at the top of //content/BUILD.gn for how this works. |
| 297 group("for_content_tests") { | 298 group("for_content_tests") { |
| 298 visibility = [ "//content/test/*" ] | 299 visibility = [ "//content/test/*" ] |
| 299 if (!is_component_build) { | 300 if (!is_component_build) { |
| 300 public_deps = [ | 301 public_deps = [ |
| 301 ":child", | 302 ":child", |
| 302 ] | 303 ] |
| 303 } | 304 } |
| 304 } | 305 } |
| OLD | NEW |