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 # Only the public target should depend on this. All other targets (even | 10 # Only the public target should depend on this. All other targets (even |
11 # internal content ones) should depend on the public one. | 11 # internal content ones) should depend on the public one. |
12 visibility = [ "//content/public/child:child_sources" ] | 12 visibility = [ "//content/public/child:child_sources" ] |
13 | 13 |
14 sources = rebase_path(content_child_gypi_values.private_child_sources, | 14 sources = rebase_path(content_child_gypi_values.private_child_sources, |
15 ".", | 15 ".", |
16 "//content") | 16 "//content") |
17 | 17 |
18 configs += [ | 18 configs += [ |
19 "//build/config:precompiled_headers", | 19 "//build/config:precompiled_headers", |
20 "//content/public/common:mojo_shell_client", | 20 "//content/public/common:mojo_shell_client", |
21 ] | 21 ] |
22 | 22 |
23 public_deps = [ | 23 public_deps = [ |
24 "//third_party/mojo/src/mojo/edk/system", | 24 "//mojo/edk/system", |
25 ] | 25 ] |
26 | 26 |
27 deps = [ | 27 deps = [ |
28 "//base", | 28 "//base", |
29 "//components/mime_util", | 29 "//components/mime_util", |
30 "//components/tracing", | 30 "//components/tracing", |
31 "//components/tracing:startup_tracing", | 31 "//components/tracing:startup_tracing", |
32 "//components/webcrypto", | 32 "//components/webcrypto", |
33 "//content/common:mojo_bindings", | 33 "//content/common:mojo_bindings", |
34 "//mojo/common", | 34 "//mojo/common", |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 | 122 |
123 if (use_aura && is_mac) { | 123 if (use_aura && is_mac) { |
124 # This file is already excluded on non-Mac. | 124 # This file is already excluded on non-Mac. |
125 sources -= [ "npapi/webplugin_delegate_impl_mac.mm" ] | 125 sources -= [ "npapi/webplugin_delegate_impl_mac.mm" ] |
126 } | 126 } |
127 | 127 |
128 if (is_win || !use_aura) { | 128 if (is_win || !use_aura) { |
129 sources -= [ "npapi/webplugin_delegate_impl_aura.cc" ] | 129 sources -= [ "npapi/webplugin_delegate_impl_aura.cc" ] |
130 } | 130 } |
131 } | 131 } |
OLD | NEW |