| 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 30 matching lines...) Expand all Loading... |
| 41 "webthemeengine_impl_default.cc", | 41 "webthemeengine_impl_default.cc", |
| 42 "webthemeengine_impl_default.h", | 42 "webthemeengine_impl_default.h", |
| 43 ] | 43 ] |
| 44 } | 44 } |
| 45 | 45 |
| 46 if (is_android) { | 46 if (is_android) { |
| 47 deps += [ "//third_party/android_tools:cpu_features" ] | 47 deps += [ "//third_party/android_tools:cpu_features" ] |
| 48 } | 48 } |
| 49 | 49 |
| 50 if (enable_plugins) { | 50 if (enable_plugins) { |
| 51 deps += [ "//ppapi:ppapi_proxy" ] | 51 deps += [ "//ppapi/proxy" ] |
| 52 } else { | 52 } else { |
| 53 sources -= [ | 53 sources -= [ |
| 54 "browser_font_resource_trusted.cc", | 54 "browser_font_resource_trusted.cc", |
| 55 "npapi/plugin_host.cc", | 55 "npapi/plugin_host.cc", |
| 56 "npapi/plugin_host.h", | 56 "npapi/plugin_host.h", |
| 57 "npapi/plugin_instance.cc", | 57 "npapi/plugin_instance.cc", |
| 58 "npapi/plugin_instance.h", | 58 "npapi/plugin_instance.h", |
| 59 "npapi/plugin_lib.cc", | 59 "npapi/plugin_lib.cc", |
| 60 "npapi/plugin_lib.h", | 60 "npapi/plugin_lib.h", |
| 61 "npapi/plugin_stream.cc", | 61 "npapi/plugin_stream.cc", |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 if (!use_openssl) { | 127 if (!use_openssl) { |
| 128 sources += rebase_path(content_child_gypi_values.webcrypto_nss_sources, | 128 sources += rebase_path(content_child_gypi_values.webcrypto_nss_sources, |
| 129 ".", | 129 ".", |
| 130 "//content") | 130 "//content") |
| 131 } else { | 131 } else { |
| 132 sources += rebase_path(content_child_gypi_values.webcrypto_openssl_sources, | 132 sources += rebase_path(content_child_gypi_values.webcrypto_openssl_sources, |
| 133 ".", | 133 ".", |
| 134 "//content") | 134 "//content") |
| 135 } | 135 } |
| 136 } | 136 } |
| OLD | NEW |