Sha256: 04d0a05a90cb5c4a1ae57294d9e8f9269248d3c7ee318fb19da1e7db3f15b9bf

Contents?: true

Size: 709 Bytes

Versions: 4

Compression:

Stored size: 709 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 default .idl build rules.
"""

import TestGyp

import sys

if sys.platform == 'win32':
  test = TestGyp.TestGyp(formats=['msvs', 'ninja'])

  CHDIR = 'idl-rules'
  test.run_gyp('basic-idl.gyp', chdir=CHDIR)
  for platform in ['Win32', 'x64']:
    test.set_configuration('Debug|%s' % platform)
    test.build('basic-idl.gyp', test.ALL, chdir=CHDIR)

    # Make sure ninja win_tool.py filters out noisy lines.
    if test.format == 'ninja' and 'Processing' in test.stdout():
      test.fail_test()

    test.pass_test()

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
mt-libuv-4.1.04 ext/gyp/test/win/gyptest-midl-rules.py
mt-libuv-4.1.03 ext/gyp/test/win/gyptest-midl-rules.py
mt-libuv-4.1.02 ext/gyp/test/win/gyptest-midl-rules.py
tree-sitter-0.1.0 ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-midl-rules.py