summaryrefslogtreecommitdiff
path: root/test/subdirectory/gyptest-top-default.py
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/subdirectory/gyptest-top-default.py
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/subdirectory/gyptest-top-default.py')
-rw-r--r--test/subdirectory/gyptest-top-default.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/subdirectory/gyptest-top-default.py b/test/subdirectory/gyptest-top-default.py
index b8e33d29..170537ed 100644
--- a/test/subdirectory/gyptest-top-default.py
+++ b/test/subdirectory/gyptest-top-default.py
@@ -22,7 +22,7 @@ test.run_gyp('prog1.gyp', chdir='src')
test.relocate('src', 'relocate/src')
-test.build_default('prog1.gyp', chdir='relocate/src')
+test.build('prog1.gyp', chdir='relocate/src')
test.run_built_executable('prog1',
stdout="Hello from prog1.c\n",