| 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 source_set("child") { | 9 source_set("child") { |
| 10 # Targets external to content should always link to the public API. | 10 # Targets external to content should always link to the public API. |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 ] | 31 ] |
| 32 | 32 |
| 33 public_deps = [ | 33 public_deps = [ |
| 34 "//gpu/ipc/client:client", | 34 "//gpu/ipc/client:client", |
| 35 "//mojo/edk/system", | 35 "//mojo/edk/system", |
| 36 ] | 36 ] |
| 37 | 37 |
| 38 deps = [ | 38 deps = [ |
| 39 "//base", | 39 "//base", |
| 40 "//components/mime_util", | 40 "//components/mime_util", |
| 41 "//components/permissions", | |
| 42 "//components/scheduler:scheduler", | 41 "//components/scheduler:scheduler", |
| 43 "//components/tracing", | 42 "//components/tracing", |
| 44 "//components/tracing:startup_tracing", | 43 "//components/tracing:startup_tracing", |
| 45 "//components/webcrypto", | 44 "//components/webcrypto", |
| 46 "//content/app/resources", | 45 "//content/app/resources", |
| 47 "//content/app/strings", | 46 "//content/app/strings", |
| 48 "//content/common", | 47 "//content/common", |
| 49 "//content/public/common:common_sources", | 48 "//content/public/common:common_sources", |
| 50 "//crypto:platform", | 49 "//crypto:platform", |
| 51 "//gpu/command_buffer/client", | 50 "//gpu/command_buffer/client", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 | 100 |
| 102 # See comment at the top of //content/BUILD.gn for how this works. | 101 # See comment at the top of //content/BUILD.gn for how this works. |
| 103 group("for_content_tests") { | 102 group("for_content_tests") { |
| 104 visibility = [ "//content/test/*" ] | 103 visibility = [ "//content/test/*" ] |
| 105 if (!is_component_build) { | 104 if (!is_component_build) { |
| 106 public_deps = [ | 105 public_deps = [ |
| 107 ":child", | 106 ":child", |
| 108 ] | 107 ] |
| 109 } | 108 } |
| 110 } | 109 } |
| OLD | NEW |