| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "//media", | 56 "//media", |
| 57 "//mojo/common", | 57 "//mojo/common", |
| 58 "//mojo/edk/system", | 58 "//mojo/edk/system", |
| 59 "//mojo/message_pump", |
| 59 "//net", | 60 "//net", |
| 60 "//services/shell/public/cpp", | 61 "//services/shell/public/cpp", |
| 61 "//services/shell/public/interfaces", | 62 "//services/shell/public/interfaces", |
| 62 "//services/shell/runner/common", | 63 "//services/shell/runner/common", |
| 63 "//skia", | 64 "//skia", |
| 64 "//storage/common", | 65 "//storage/common", |
| 65 "//third_party/WebKit/public:blink_headers", | 66 "//third_party/WebKit/public:blink_headers", |
| 66 "//third_party/WebKit/public:image_resources", | 67 "//third_party/WebKit/public:image_resources", |
| 67 "//third_party/WebKit/public:resources", | 68 "//third_party/WebKit/public:resources", |
| 68 "//third_party/icu", | 69 "//third_party/icu", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 | 112 |
| 112 # See comment at the top of //content/BUILD.gn for how this works. | 113 # See comment at the top of //content/BUILD.gn for how this works. |
| 113 group("for_content_tests") { | 114 group("for_content_tests") { |
| 114 visibility = [ "//content/test/*" ] | 115 visibility = [ "//content/test/*" ] |
| 115 if (!is_component_build) { | 116 if (!is_component_build) { |
| 116 public_deps = [ | 117 public_deps = [ |
| 117 ":child", | 118 ":child", |
| 118 ] | 119 ] |
| 119 } | 120 } |
| 120 } | 121 } |
| OLD | NEW |