| 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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 "//content/public/common:common_sources", | 231 "//content/public/common:common_sources", |
| 232 "//crypto:platform", | 232 "//crypto:platform", |
| 233 "//device/power_monitor/public/cpp", | 233 "//device/power_monitor/public/cpp", |
| 234 "//gpu/command_buffer/client", | 234 "//gpu/command_buffer/client", |
| 235 "//ipc", | 235 "//ipc", |
| 236 "//ipc:mojom", | 236 "//ipc:mojom", |
| 237 "//media", | 237 "//media", |
| 238 "//mojo/common", | 238 "//mojo/common", |
| 239 "//mojo/edk/system", | 239 "//mojo/edk/system", |
| 240 "//net", | 240 "//net", |
| 241 "//services/device/public/interfaces", |
| 241 "//services/service_manager/public/cpp", | 242 "//services/service_manager/public/cpp", |
| 242 "//services/service_manager/public/interfaces", | 243 "//services/service_manager/public/interfaces", |
| 243 "//services/service_manager/runner/common", | 244 "//services/service_manager/runner/common", |
| 244 "//skia", | 245 "//skia", |
| 245 "//storage/common", | 246 "//storage/common", |
| 246 "//third_party/WebKit/public:blink_headers", | 247 "//third_party/WebKit/public:blink_headers", |
| 247 "//third_party/WebKit/public:features", | 248 "//third_party/WebKit/public:features", |
| 248 "//third_party/WebKit/public:image_resources", | 249 "//third_party/WebKit/public:image_resources", |
| 249 "//third_party/WebKit/public:resources", | 250 "//third_party/WebKit/public:resources", |
| 250 "//third_party/ced", | 251 "//third_party/ced", |
| (...skipping 42 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 |