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