diff options
-rw-r--r-- | BUILD.gn | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -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 |