| 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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 ] | 217 ] |
| 218 | 218 |
| 219 deps = [ | 219 deps = [ |
| 220 "//base", | 220 "//base", |
| 221 "//components/discardable_memory/client", | 221 "//components/discardable_memory/client", |
| 222 "//components/discardable_memory/public/interfaces", |
| 222 "//components/mime_util", | 223 "//components/mime_util", |
| 223 "//components/tracing", | 224 "//components/tracing", |
| 224 "//components/tracing:startup_tracing", | 225 "//components/tracing:startup_tracing", |
| 225 "//components/webcrypto", | 226 "//components/webcrypto", |
| 226 "//content/app/resources", | 227 "//content/app/resources", |
| 227 "//content/app/strings", | 228 "//content/app/strings", |
| 228 "//content/common", | 229 "//content/common", |
| 229 "//content/public/common:common_sources", | 230 "//content/public/common:common_sources", |
| 230 "//crypto:platform", | 231 "//crypto:platform", |
| 231 "//device/power_monitor/public/cpp", | 232 "//device/power_monitor/public/cpp", |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 | 292 |
| 292 # See comment at the top of //content/BUILD.gn for how this works. | 293 # See comment at the top of //content/BUILD.gn for how this works. |
| 293 group("for_content_tests") { | 294 group("for_content_tests") { |
| 294 visibility = [ "//content/test/*" ] | 295 visibility = [ "//content/test/*" ] |
| 295 if (!is_component_build) { | 296 if (!is_component_build) { |
| 296 public_deps = [ | 297 public_deps = [ |
| 297 ":child", | 298 ":child", |
| 298 ] | 299 ] |
| 299 } | 300 } |
| 300 } | 301 } |
| OLD | NEW |