| 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("//content/child/child.gni") | 7 import("//content/child/child.gni") |
| 8 | 8 |
| 9 if (is_component_build) { | 9 if (is_component_build) { |
| 10 link_target_type = "source_set" | 10 link_target_type = "source_set" |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 "//components/scheduler:scheduler", | 46 "//components/scheduler:scheduler", |
| 47 "//components/tracing", | 47 "//components/tracing", |
| 48 "//components/tracing:startup_tracing", | 48 "//components/tracing:startup_tracing", |
| 49 "//components/webcrypto", | 49 "//components/webcrypto", |
| 50 "//content/app/resources", | 50 "//content/app/resources", |
| 51 "//content/app/strings", | 51 "//content/app/strings", |
| 52 "//content/common", | 52 "//content/common", |
| 53 "//content/public/common:common_sources", | 53 "//content/public/common:common_sources", |
| 54 "//crypto:platform", | 54 "//crypto:platform", |
| 55 "//gpu/command_buffer/client", | 55 "//gpu/command_buffer/client", |
| 56 "//ipc", | |
| 57 "//ipc:mojom", | |
| 58 "//media", | 56 "//media", |
| 59 "//mojo/common", | 57 "//mojo/common", |
| 60 "//mojo/edk/system", | 58 "//mojo/edk/system", |
| 61 "//net", | 59 "//net", |
| 62 "//services/shell/public/cpp", | 60 "//services/shell/public/cpp", |
| 63 "//services/shell/public/interfaces", | 61 "//services/shell/public/interfaces", |
| 64 "//services/shell/runner/common", | 62 "//services/shell/runner/common", |
| 65 "//skia", | 63 "//skia", |
| 66 "//storage/common", | 64 "//storage/common", |
| 67 "//third_party/WebKit/public:blink_headers", | 65 "//third_party/WebKit/public:blink_headers", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 | 107 |
| 110 # See comment at the top of //content/BUILD.gn for how this works. | 108 # See comment at the top of //content/BUILD.gn for how this works. |
| 111 group("for_content_tests") { | 109 group("for_content_tests") { |
| 112 visibility = [ "//content/test/*" ] | 110 visibility = [ "//content/test/*" ] |
| 113 if (!is_component_build) { | 111 if (!is_component_build) { |
| 114 public_deps = [ | 112 public_deps = [ |
| 115 ":child", | 113 ":child", |
| 116 ] | 114 ] |
| 117 } | 115 } |
| 118 } | 116 } |
| OLD | NEW |