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

Unified Diff: BUILD.gn

Issue 501513003: Don't do anything in Android GN build while the current bugs are fixed. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | no next file » | 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 2aac18abd7baf7939c4d5338854c3fabca053599..4d85e40e6d8c6991237b7f5954cfa58e44ff671a 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -10,6 +10,17 @@
import("//build/config/ui.gni")
+# Android GN build has some bugs: http://crbug.com/405686
+if (is_android) {
+
+group("root") {
+ deps = [
+ "//base",
+ ]
+}
+
+} else {
+
# In GN, a "group" is a dummy target that just lists other targets.
group("root") {
# Note that some dependencies are commented out. These are things that are
@@ -230,3 +241,5 @@ group("root") {
]
}
}
+
+}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698