| 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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 "//components/tracing:startup_tracing", | 229 "//components/tracing:startup_tracing", |
| 230 "//components/webcrypto", | 230 "//components/webcrypto", |
| 231 "//content/app/resources", | 231 "//content/app/resources", |
| 232 "//content/app/strings", | 232 "//content/app/strings", |
| 233 "//content/common", | 233 "//content/common", |
| 234 "//content/public/common:common_sources", | 234 "//content/public/common:common_sources", |
| 235 "//crypto:platform", | 235 "//crypto:platform", |
| 236 "//gpu/command_buffer/client", | 236 "//gpu/command_buffer/client", |
| 237 "//ipc", | 237 "//ipc", |
| 238 "//media", | 238 "//media", |
| 239 "//media/blink", |
| 239 "//mojo/common", | 240 "//mojo/common", |
| 240 "//mojo/edk/system", | 241 "//mojo/edk/system", |
| 241 "//net", | 242 "//net", |
| 242 "//services/device/public/cpp/power_monitor", | 243 "//services/device/public/cpp/power_monitor", |
| 243 "//services/device/public/interfaces:constants", | 244 "//services/device/public/interfaces:constants", |
| 244 "//services/service_manager/public/cpp", | 245 "//services/service_manager/public/cpp", |
| 245 "//services/service_manager/public/interfaces", | 246 "//services/service_manager/public/interfaces", |
| 246 "//services/service_manager/runner/common", | 247 "//services/service_manager/runner/common", |
| 247 "//skia", | 248 "//skia", |
| 248 "//storage/common", | 249 "//storage/common", |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 | 297 |
| 297 # See comment at the top of //content/BUILD.gn for how this works. | 298 # See comment at the top of //content/BUILD.gn for how this works. |
| 298 group("for_content_tests") { | 299 group("for_content_tests") { |
| 299 visibility = [ "//content/test/*" ] | 300 visibility = [ "//content/test/*" ] |
| 300 if (!is_component_build) { | 301 if (!is_component_build) { |
| 301 public_deps = [ | 302 public_deps = [ |
| 302 ":child", | 303 ":child", |
| 303 ] | 304 ] |
| 304 } | 305 } |
| 305 } | 306 } |
| OLD | NEW |