summaryrefslogtreecommitdiff
path: root/deps/gyp/test/dependencies/gyptest-extra-targets.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/dependencies/gyptest-extra-targets.py')
-rwxr-xr-xdeps/gyp/test/dependencies/gyptest-extra-targets.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/deps/gyp/test/dependencies/gyptest-extra-targets.py b/deps/gyp/test/dependencies/gyptest-extra-targets.py
deleted file mode 100755
index 09b00d958b..0000000000
--- a/deps/gyp/test/dependencies/gyptest-extra-targets.py
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env python
-
-# Copyright (c) 2009 Google Inc. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-"""
-Verify that dependencies don't pull unused targets into the build.
-"""
-
-import TestGyp
-
-test = TestGyp.TestGyp()
-
-test.run_gyp('extra_targets.gyp',
- '-G', 'xcode_ninja_target_pattern=^a$')
-
-# This should fail if it tries to build 'c_unused' since 'c/c.c' has a syntax
-# error and won't compile.
-test.build('extra_targets.gyp', test.ALL)
-
-test.pass_test()