diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-22 20:51:33 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-22 20:52:39 +0000 |
commit | e918004f38905e0586cf508198d1b0d6d0106269 (patch) | |
tree | aa981fdfb048b4807eefd94cdecbe5691be22013 /BUILD.gn | |
parent | 6b7b926890a03b3b51336ca2434e9efe15554c97 (diff) | |
download | chromium_src-e918004f38905e0586cf508198d1b0d6d0106269.zip chromium_src-e918004f38905e0586cf508198d1b0d6d0106269.tar.gz chromium_src-e918004f38905e0586cf508198d1b0d6d0106269.tar.bz2 |
Don't do anything in Android GN build while the current bugs are fixed.
BUG=405686
Review URL: https://codereview.chromium.org/501513003
Cr-Commit-Position: refs/heads/master@{#291500}
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@291500 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'BUILD.gn')
-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 |