summaryrefslogtreecommitdiff
path: root/test/toolsets
diff options
context:
space:
mode:
authorsgk@chromium.org <sgk@chromium.org@78cadc50-ecff-11dd-a971-7dbc132099af>2009-10-21 18:45:59 +0000
committersgk@chromium.org <sgk@chromium.org@78cadc50-ecff-11dd-a971-7dbc132099af>2009-10-21 18:45:59 +0000
commit040d50e7277c41a0b9641dc42c76be8605055637 (patch)
tree3b0b85c0075912b1b07e9a8da90060c3ffd96ca4 /test/toolsets
parent5f64b9b1d8c4bb6d87ca526ea9ae1191f64946e1 (diff)
downloadgyp-040d50e7277c41a0b9641dc42c76be8605055637.tar.gz
Simplify the API for building targets:
Gets rid of the separate .build_{all,default,target)() methods (and underlying .run_build() methods in the subclasses that had one) in favor of a single .build() method that takes an optional target argument: * An unspecified target argument, or an explicit target argument of None or test.DEFAULT builds the default target for the generated build configuration. * A target argumnent of test.ALL builds the 'all' target (if any) for the generatede build configuration. * Otherwise, the specified target is built. BUG=none TEST=none Review URL: http://codereview.chromium.org/306029 git-svn-id: http://gyp.googlecode.com/svn/trunk@717 78cadc50-ecff-11dd-a971-7dbc132099af
Diffstat (limited to 'test/toolsets')
-rw-r--r--test/toolsets/gyptest-toolsets.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/toolsets/gyptest-toolsets.py b/test/toolsets/gyptest-toolsets.py
index 4d74a117..56010cf3 100644
--- a/test/toolsets/gyptest-toolsets.py
+++ b/test/toolsets/gyptest-toolsets.py
@@ -11,7 +11,7 @@ test = TestGyp.TestGyp(formats=['make'])
test.run_gyp('toolsets.gyp')
-test.build_all('toolsets.gyp')
+test.build('toolsets.gyp', test.ALL)
test.run_built_executable('host-main', stdout="Host\n")
test.run_built_executable('target-main', stdout="Target\n")