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 12 matching lines...) Expand all Loading... |
23 deps = [ | 23 deps = [ |
24 "//base", | 24 "//base", |
25 "//components/tracing", | 25 "//components/tracing", |
26 "//content/common:mojo_bindings", | 26 "//content/common:mojo_bindings", |
27 "//mojo/common", | 27 "//mojo/common", |
28 "//mojo/environment:chromium", | 28 "//mojo/environment:chromium", |
29 "//skia", | 29 "//skia", |
30 "//third_party/icu", | 30 "//third_party/icu", |
31 "//third_party/mojo/src/mojo/public/interfaces/application", | 31 "//third_party/mojo/src/mojo/public/interfaces/application", |
32 "//ui/base", | 32 "//ui/base", |
| 33 "//ui/events/gestures/blink", |
33 "//ui/gfx", | 34 "//ui/gfx", |
34 "//ui/gfx/geometry", | 35 "//ui/gfx/geometry", |
35 "//ui/native_theme", | 36 "//ui/native_theme", |
36 "//url", | 37 "//url", |
37 ] | 38 ] |
38 | 39 |
39 if (!use_default_render_theme) { | 40 if (!use_default_render_theme) { |
40 sources -= [ | 41 sources -= [ |
41 "webthemeengine_impl_default.cc", | 42 "webthemeengine_impl_default.cc", |
42 "webthemeengine_impl_default.h", | 43 "webthemeengine_impl_default.h", |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 if (!use_openssl) { | 131 if (!use_openssl) { |
131 sources += rebase_path(content_child_gypi_values.webcrypto_nss_sources, | 132 sources += rebase_path(content_child_gypi_values.webcrypto_nss_sources, |
132 ".", | 133 ".", |
133 "//content") | 134 "//content") |
134 } else { | 135 } else { |
135 sources += rebase_path(content_child_gypi_values.webcrypto_openssl_sources, | 136 sources += rebase_path(content_child_gypi_values.webcrypto_openssl_sources, |
136 ".", | 137 ".", |
137 "//content") | 138 "//content") |
138 } | 139 } |
139 } | 140 } |
OLD | NEW |