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

Unified Diff: BUILD.gn

Issue 227673008: Checkpoint work to get GN builds working on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge forward to 263376 Created 6 years, 8 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 | « no previous file | base/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index 445f837442465d48896794d5fece4172af4c2d73..abdbc45fb37c148dca54d3c80a12b0f581a77070 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -48,7 +48,7 @@ group("root") {
"//url",
]
- if (is_posix) { # TODO(brettw) should be use_openssl
+ if (is_posix && !is_android) { # TODO(brettw) should be use_openssl
deps += [
"//third_party/openssl",
]
@@ -58,4 +58,14 @@ group("root") {
"//third_party/freetype2",
]
}
+
+ if (is_android) {
+ deps -= [
+ "//skia",
+ "//third_party/libusb",
+ "//tools/gn",
+ "//ui/events",
+ "//ui/gfx",
+ ]
+ }
}
« no previous file with comments | « no previous file | base/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698