diff options
author | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-04 03:11:01 +0000 |
---|---|---|
committer | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-04 03:11:01 +0000 |
commit | e680087d544106fb28db8a489c5698fe2b9df6f6 (patch) | |
tree | bc6dff7a31a4da3d637c20df7cbab5e7f956c381 /build | |
parent | 2fdcbee5a073e384746dc4558fe8167463046157 (diff) | |
download | chromium_src-e680087d544106fb28db8a489c5698fe2b9df6f6.zip chromium_src-e680087d544106fb28db8a489c5698fe2b9df6f6.tar.gz chromium_src-e680087d544106fb28db8a489c5698fe2b9df6f6.tar.bz2 |
Adds aura_builder target to all.gyp so that we can use it from the bots.
BUG=none
TEST=none
R=ben@chromium.org
Review URL: http://codereview.chromium.org/8113022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103848 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/all.gyp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/build/all.gyp b/build/all.gyp index 6e4ef8c..fe75808 100644 --- a/build/all.gyp +++ b/build/all.gyp @@ -598,5 +598,23 @@ }, ], # targets }], # "chromeos==1" + ['use_aura==1', { + 'targets': [ + { + 'target_name': 'aura_builder', + 'type': 'none', + 'dependencies': [ + '../ui/aura_shell/aura_shell.gyp:aura_shell_exe', + '../ui/aura/aura.gyp:*', + '../ui/gfx/compositor/compositor.gyp:*', + '../views/views.gyp:views', + '../views/views.gyp:views_aura_desktop', + '../views/views.gyp:views_desktop', + '../views/views.gyp:views_desktop_lib', + '../views/views.gyp:views_unittests', + ], + }, + ], # targets + }], # "use_aura==1" ], # conditions } |