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