| 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 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 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", |
| 35 "//mojo/environment:chromium", | |
| 36 "//mojo/message_pump", | 35 "//mojo/message_pump", |
| 37 "//mojo/shell/public/interfaces", | 36 "//mojo/shell/public/interfaces", |
| 38 "//net", | 37 "//net", |
| 39 "//skia", | 38 "//skia", |
| 40 "//third_party/icu", | 39 "//third_party/icu", |
| 41 "//ui/base", | 40 "//ui/base", |
| 42 "//ui/events/gestures/blink", | 41 "//ui/events/gestures/blink", |
| 43 "//ui/gfx", | 42 "//ui/gfx", |
| 44 "//ui/gfx/geometry", | 43 "//ui/gfx/geometry", |
| 45 "//ui/native_theme", | 44 "//ui/native_theme", |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 | 121 |
| 123 if (use_aura && is_mac) { | 122 if (use_aura && is_mac) { |
| 124 # This file is already excluded on non-Mac. | 123 # This file is already excluded on non-Mac. |
| 125 sources -= [ "npapi/webplugin_delegate_impl_mac.mm" ] | 124 sources -= [ "npapi/webplugin_delegate_impl_mac.mm" ] |
| 126 } | 125 } |
| 127 | 126 |
| 128 if (is_win || !use_aura) { | 127 if (is_win || !use_aura) { |
| 129 sources -= [ "npapi/webplugin_delegate_impl_aura.cc" ] | 128 sources -= [ "npapi/webplugin_delegate_impl_aura.cc" ] |
| 130 } | 129 } |
| 131 } | 130 } |
| OLD | NEW |