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 += [ "//build/config:precompiled_headers" ] | 18 configs += [ |
| 19 "//build/config:precompiled_headers", |
| 20 "//content/public/common:mojo_shell_client", |
| 21 ] |
19 | 22 |
20 public_deps = [ | 23 public_deps = [ |
21 "//third_party/mojo/src/mojo/edk/system", | 24 "//third_party/mojo/src/mojo/edk/system", |
22 ] | 25 ] |
23 | 26 |
24 deps = [ | 27 deps = [ |
25 "//base", | 28 "//base", |
26 "//components/mime_util", | 29 "//components/mime_util", |
27 "//components/tracing", | 30 "//components/tracing", |
28 "//components/tracing:startup_tracing", | 31 "//components/tracing:startup_tracing", |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 "//third_party/WebKit/public:resources", | 130 "//third_party/WebKit/public:resources", |
128 "//third_party/npapi", | 131 "//third_party/npapi", |
129 ] | 132 ] |
130 } | 133 } |
131 | 134 |
132 if (use_aura && is_mac) { | 135 if (use_aura && is_mac) { |
133 # This file is already excluded on non-Mac. | 136 # This file is already excluded on non-Mac. |
134 sources -= [ "npapi/webplugin_delegate_impl_mac.mm" ] | 137 sources -= [ "npapi/webplugin_delegate_impl_mac.mm" ] |
135 } | 138 } |
136 } | 139 } |
OLD | NEW |