| 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 | 7 |
| 8 if (is_component_build) { | 8 if (is_component_build) { |
| 9 link_target_type = "source_set" | 9 link_target_type = "source_set" |
| 10 } else { | 10 } else { |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "//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/shell/public/cpp", | 241 "//services/service_manager/public/cpp", |
| 242 "//services/shell/public/interfaces", | 242 "//services/service_manager/public/interfaces", |
| 243 "//services/shell/runner/common", | 243 "//services/service_manager/runner/common", |
| 244 "//skia", | 244 "//skia", |
| 245 "//storage/common", | 245 "//storage/common", |
| 246 "//third_party/WebKit/public:blink_headers", | 246 "//third_party/WebKit/public:blink_headers", |
| 247 "//third_party/WebKit/public:image_resources", | 247 "//third_party/WebKit/public:image_resources", |
| 248 "//third_party/WebKit/public:resources", | 248 "//third_party/WebKit/public:resources", |
| 249 "//third_party/ced", | 249 "//third_party/ced", |
| 250 "//ui/base", | 250 "//ui/base", |
| 251 "//ui/events/gestures/blink", | 251 "//ui/events/gestures/blink", |
| 252 "//ui/gfx", | 252 "//ui/gfx", |
| 253 "//ui/gfx/geometry", | 253 "//ui/gfx/geometry", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 | 292 |
| 293 # 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. |
| 294 group("for_content_tests") { | 294 group("for_content_tests") { |
| 295 visibility = [ "//content/test/*" ] | 295 visibility = [ "//content/test/*" ] |
| 296 if (!is_component_build) { | 296 if (!is_component_build) { |
| 297 public_deps = [ | 297 public_deps = [ |
| 298 ":child", | 298 ":child", |
| 299 ] | 299 ] |
| 300 } | 300 } |
| 301 } | 301 } |
| OLD | NEW |