| 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 12 matching lines...) Expand all Loading... |
| 23 sources = rebase_path(content_child_gypi_values.private_child_sources, | 23 sources = rebase_path(content_child_gypi_values.private_child_sources, |
| 24 ".", | 24 ".", |
| 25 "//content") | 25 "//content") |
| 26 | 26 |
| 27 configs += [ | 27 configs += [ |
| 28 "//build/config:precompiled_headers", | 28 "//build/config:precompiled_headers", |
| 29 "//content/public/common:mojo_shell_client", | 29 "//content/public/common:mojo_shell_client", |
| 30 ] | 30 ] |
| 31 | 31 |
| 32 public_deps = [ | 32 public_deps = [ |
| 33 "//gpu/ipc/client:client", |
| 33 "//mojo/edk/system", | 34 "//mojo/edk/system", |
| 34 ] | 35 ] |
| 35 | 36 |
| 36 deps = [ | 37 deps = [ |
| 37 "//base", | 38 "//base", |
| 38 "//components/mime_util", | 39 "//components/mime_util", |
| 39 "//components/scheduler:scheduler", | 40 "//components/scheduler:scheduler", |
| 40 "//components/tracing", | 41 "//components/tracing", |
| 41 "//components/tracing:startup_tracing", | 42 "//components/tracing:startup_tracing", |
| 42 "//components/webcrypto", | 43 "//components/webcrypto", |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 | 119 |
| 119 if (use_aura && is_mac) { | 120 if (use_aura && is_mac) { |
| 120 # This file is already excluded on non-Mac. | 121 # This file is already excluded on non-Mac. |
| 121 sources -= [ "npapi/webplugin_delegate_impl_mac.mm" ] | 122 sources -= [ "npapi/webplugin_delegate_impl_mac.mm" ] |
| 122 } | 123 } |
| 123 | 124 |
| 124 if (is_win || !use_aura) { | 125 if (is_win || !use_aura) { |
| 125 sources -= [ "npapi/webplugin_delegate_impl_aura.cc" ] | 126 sources -= [ "npapi/webplugin_delegate_impl_aura.cc" ] |
| 126 } | 127 } |
| 127 } | 128 } |
| OLD | NEW |