| 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 25 matching lines...) Expand all Loading... |
| 36 | 36 |
| 37 configs += [ "//build/config:precompiled_headers" ] | 37 configs += [ "//build/config:precompiled_headers" ] |
| 38 | 38 |
| 39 public_deps = [ | 39 public_deps = [ |
| 40 "//gpu/ipc/client:client", | 40 "//gpu/ipc/client:client", |
| 41 ] | 41 ] |
| 42 | 42 |
| 43 deps = [ | 43 deps = [ |
| 44 "//base", | 44 "//base", |
| 45 "//components/mime_util", | 45 "//components/mime_util", |
| 46 "//components/scheduler:scheduler", | |
| 47 "//components/tracing", | 46 "//components/tracing", |
| 48 "//components/tracing:startup_tracing", | 47 "//components/tracing:startup_tracing", |
| 49 "//components/webcrypto", | 48 "//components/webcrypto", |
| 50 "//content/app/resources", | 49 "//content/app/resources", |
| 51 "//content/app/strings", | 50 "//content/app/strings", |
| 52 "//content/common", | 51 "//content/common", |
| 53 "//content/public/common:common_sources", | 52 "//content/public/common:common_sources", |
| 54 "//crypto:platform", | 53 "//crypto:platform", |
| 55 "//gpu/command_buffer/client", | 54 "//gpu/command_buffer/client", |
| 56 "//ipc", | 55 "//ipc", |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 | 112 |
| 114 # 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. |
| 115 group("for_content_tests") { | 114 group("for_content_tests") { |
| 116 visibility = [ "//content/test/*" ] | 115 visibility = [ "//content/test/*" ] |
| 117 if (!is_component_build) { | 116 if (!is_component_build) { |
| 118 public_deps = [ | 117 public_deps = [ |
| 119 ":child", | 118 ":child", |
| 120 ] | 119 ] |
| 121 } | 120 } |
| 122 } | 121 } |
| OLD | NEW |