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

Unified Diff: chrome/renderer/BUILD.gn

Issue 571863002: GN: Get //chrome/* mostly working on android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/BUILD.gn ('k') | chrome/utility/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/BUILD.gn
diff --git a/chrome/renderer/BUILD.gn b/chrome/renderer/BUILD.gn
index b0aa5dcc4fd2723a07867577a4a9fd0d9c4ccbcd..c3a98cecc520bd00cef4cfcc8dc93be229f2f9fb 100644
--- a/chrome/renderer/BUILD.gn
+++ b/chrome/renderer/BUILD.gn
@@ -39,8 +39,6 @@ static_library("renderer") {
"//components/cdm/renderer",
"//components/data_reduction_proxy/common",
"//components/password_manager/content/renderer",
- "//components/pdf/renderer",
- "//components/plugins/renderer",
"//components/startup_metric_utils",
"//components/translate/content/renderer",
"//components/translate/core/common",
@@ -50,7 +48,6 @@ static_library("renderer") {
"//content/app/resources",
"//content/app/strings",
"//content/public/renderer",
- "//extensions:extensions_resources",
"//media/cast:net",
"//media/cast:sender",
"//media/cast/logging/proto",
@@ -78,6 +75,8 @@ static_library("renderer") {
sources += rebase_path(gypi_values.chrome_renderer_plugin_sources,
".", "..")
deps += [
+ "//components/pdf/renderer",
+ "//components/plugins/renderer",
"//ppapi:ppapi_host",
"//ppapi:ppapi_ipc",
"//ppapi:ppapi_proxy",
@@ -107,7 +106,10 @@ static_library("renderer") {
if (enable_extensions) {
sources += rebase_path(gypi_values.chrome_renderer_extensions_sources,
".", "..")
- deps += [ "//extensions/renderer" ]
+ deps += [
+ "//extensions:extensions_resources",
+ "//extensions/renderer",
+ ]
}
if (enable_webrtc) {
sources += rebase_path(gypi_values.chrome_renderer_webrtc_sources,
« no previous file with comments | « chrome/common/BUILD.gn ('k') | chrome/utility/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698