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") { |
(...skipping 14 matching lines...) Expand all Loading... |
25 deps = [ | 25 deps = [ |
26 "//base", | 26 "//base", |
27 "//components/mime_util", | 27 "//components/mime_util", |
28 "//components/tracing", | 28 "//components/tracing", |
29 "//components/tracing:startup_tracing", | 29 "//components/tracing:startup_tracing", |
30 "//components/webcrypto", | 30 "//components/webcrypto", |
31 "//content/common:mojo_bindings", | 31 "//content/common:mojo_bindings", |
32 "//mojo/application/public/interfaces", | 32 "//mojo/application/public/interfaces", |
33 "//mojo/common", | 33 "//mojo/common", |
34 "//mojo/environment:chromium", | 34 "//mojo/environment:chromium", |
35 "//mojo/message_pump", | |
36 "//skia", | 35 "//skia", |
37 "//third_party/icu", | 36 "//third_party/icu", |
38 "//ui/base", | 37 "//ui/base", |
39 "//ui/events/gestures/blink", | 38 "//ui/events/gestures/blink", |
40 "//ui/gfx", | 39 "//ui/gfx", |
41 "//ui/gfx/geometry", | 40 "//ui/gfx/geometry", |
42 "//ui/native_theme", | 41 "//ui/native_theme", |
43 "//url", | 42 "//url", |
44 ] | 43 ] |
45 | 44 |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 | 128 |
130 if (use_aura && is_mac) { | 129 if (use_aura && is_mac) { |
131 # This file is already excluded on non-Mac. | 130 # This file is already excluded on non-Mac. |
132 sources -= [ "npapi/webplugin_delegate_impl_mac.mm" ] | 131 sources -= [ "npapi/webplugin_delegate_impl_mac.mm" ] |
133 } | 132 } |
134 | 133 |
135 if (is_win || !use_aura) { | 134 if (is_win || !use_aura) { |
136 sources -= [ "npapi/webplugin_delegate_impl_aura.cc" ] | 135 sources -= [ "npapi/webplugin_delegate_impl_aura.cc" ] |
137 } | 136 } |
138 } | 137 } |
OLD | NEW |