Sha256: f834d0dbf18b65fecc3706143799a7cdffcf9e95e94097b8a890f865a4bc0b6d
Contents?: true
Size: 499 Bytes
Versions: 28
Compression:
Stored size: 499 Bytes
Contents
#!/usr/bin/env python # Copyright (c) 2012 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. """ Handle VS macro expansion containing gyp variables. """ import TestGyp import sys if sys.platform == 'win32': test = TestGyp.TestGyp(formats=['msvs', 'ninja']) CHDIR = 'vs-macros' test.run_gyp('containing-gyp.gyp', chdir=CHDIR) test.build('containing-gyp.gyp', test.ALL, chdir=CHDIR) test.pass_test()
Version data entries
28 entries across 28 versions & 5 rubygems