diff options
Diffstat (limited to 'other-licenses/gyp-deps/tools/gyp/test/win/gyptest-midl-excluded.py')
-rw-r--r-- | other-licenses/gyp-deps/tools/gyp/test/win/gyptest-midl-excluded.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/other-licenses/gyp-deps/tools/gyp/test/win/gyptest-midl-excluded.py b/other-licenses/gyp-deps/tools/gyp/test/win/gyptest-midl-excluded.py new file mode 100644 index 000000000..70059ab64 --- /dev/null +++ b/other-licenses/gyp-deps/tools/gyp/test/win/gyptest-midl-excluded.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python + +# Copyright (c) 2014 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. + +""" +Test that .idl files in actions and non-native rules are excluded. +""" + +import TestGyp + +import sys + +if sys.platform == 'win32': + test = TestGyp.TestGyp(formats=['msvs', 'ninja']) + + CHDIR = 'idl-excluded' + test.run_gyp('idl-excluded.gyp', chdir=CHDIR) + test.build('idl-excluded.gyp', test.ALL, chdir=CHDIR) + + test.pass_test() |