Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Side by Side Diff: content/child/BUILD.gn

Issue 921953002: Split apart the PPAPI GN targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix component Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/common/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698