| 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 14 matching lines...) Expand all Loading... |
| 25 ".", | 25 ".", |
| 26 "//content") | 26 "//content") |
| 27 | 27 |
| 28 configs += [ | 28 configs += [ |
| 29 "//build/config:precompiled_headers", | 29 "//build/config:precompiled_headers", |
| 30 "//content/public/common:mojo_shell_client", | 30 "//content/public/common:mojo_shell_client", |
| 31 ] | 31 ] |
| 32 | 32 |
| 33 public_deps = [ | 33 public_deps = [ |
| 34 "//gpu/ipc/client:client", | 34 "//gpu/ipc/client:client", |
| 35 "//mojo/edk/system", | |
| 36 ] | 35 ] |
| 37 | 36 |
| 38 deps = [ | 37 deps = [ |
| 39 "//base", | 38 "//base", |
| 40 "//components/mime_util", | 39 "//components/mime_util", |
| 41 "//components/scheduler:scheduler", | 40 "//components/scheduler:scheduler", |
| 42 "//components/tracing", | 41 "//components/tracing", |
| 43 "//components/tracing:startup_tracing", | 42 "//components/tracing:startup_tracing", |
| 44 "//components/webcrypto", | 43 "//components/webcrypto", |
| 45 "//content/app/resources", | 44 "//content/app/resources", |
| 46 "//content/app/strings", | 45 "//content/app/strings", |
| 47 "//content/common", | 46 "//content/common", |
| 48 "//content/public/common:common_sources", | 47 "//content/public/common:common_sources", |
| 49 "//crypto:platform", | 48 "//crypto:platform", |
| 50 "//gpu/command_buffer/client", | 49 "//gpu/command_buffer/client", |
| 51 "//ipc/mojo", | 50 "//ipc/mojo", |
| 52 "//media", | 51 "//media", |
| 53 "//mojo/common", | 52 "//mojo/common", |
| 53 "//mojo/edk/system", |
| 54 "//net", | 54 "//net", |
| 55 "//services/shell/public/interfaces", | 55 "//services/shell/public/interfaces", |
| 56 "//services/shell/runner/common", | 56 "//services/shell/runner/common", |
| 57 "//skia", | 57 "//skia", |
| 58 "//storage/common", | 58 "//storage/common", |
| 59 "//third_party/WebKit/public:blink_headers", | 59 "//third_party/WebKit/public:blink_headers", |
| 60 "//third_party/WebKit/public:image_resources", | 60 "//third_party/WebKit/public:image_resources", |
| 61 "//third_party/WebKit/public:resources", | 61 "//third_party/WebKit/public:resources", |
| 62 "//third_party/icu", | 62 "//third_party/icu", |
| 63 "//ui/base", | 63 "//ui/base", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 | 100 |
| 101 # 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. |
| 102 group("for_content_tests") { | 102 group("for_content_tests") { |
| 103 visibility = [ "//content/test/*" ] | 103 visibility = [ "//content/test/*" ] |
| 104 if (!is_component_build) { | 104 if (!is_component_build) { |
| 105 public_deps = [ | 105 public_deps = [ |
| 106 ":child", | 106 ":child", |
| 107 ] | 107 ] |
| 108 } | 108 } |
| 109 } | 109 } |
| OLD | NEW |