Sha256: daec2c778c876d65e60d2ac01a639a0c356001136f46081393e7005ea7f1e8db
Contents?: true
Size: 498 Bytes
Versions: 40
Compression:
Stored size: 498 Bytes
Contents
#!/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') # 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()
Version data entries
40 entries across 40 versions & 6 rubygems