summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--BUILD.gn13
1 files changed, 13 insertions, 0 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 0aa0937..b5c99e8 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
@@ -232,3 +243,5 @@ group("root") {
]
}
}
+
+} \ No newline at end of file