Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 | 2 |
| 3 # Copyright (c) 2013 Google Inc. All rights reserved. | 3 # Copyright (c) 2013 Google Inc. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 """ | 7 """ |
| 8 Make sure msvs_enable_winrt works correctly. | 8 Make sure msvs_application_type_revision works correctly. |
| 9 """ | 9 """ |
| 10 | 10 |
| 11 import TestGyp | 11 import TestGyp |
| 12 | 12 |
| 13 import os | 13 import os |
| 14 import sys | 14 import sys |
| 15 import struct | 15 import struct |
| 16 | 16 |
| 17 CHDIR = 'enable-winrt' | 17 CHDIR = 'enable-winrt' |
| 18 | 18 |
| 19 print 'This test is not currently working on the bots: https://code.google.com/p /gyp/issues/detail?id=466' | 19 print 'This test is not currently working on the bots: https://code.google.com/p /gyp/issues/detail?id=466' |
| 20 sys.exit(0) | 20 sys.exit(0) |
| 21 | 21 |
| 22 if (sys.platform == 'win32' and | 22 if (sys.platform == 'win32' and |
| 23 int(os.environ.get('GYP_MSVS_VERSION', 0)) >= 2013): | 23 int(os.environ.get('GYP_MSVS_VERSION', 0)) >= 2015): |
| 24 test = TestGyp.TestGyp(formats=['msvs']) | 24 test = TestGyp.TestGyp(formats=['msvs']) |
| 25 | 25 |
| 26 test.run_gyp('enable-winrt.gyp', chdir=CHDIR) | 26 test.run_gyp('enable-winrt.gyp', chdir=CHDIR) |
| 27 | 27 |
| 28 test.build('enable-winrt.gyp', 'enable_winrt_dll', chdir=CHDIR) | 28 test.build('enable-winrt.gyp', 'enable_winrt_dll', chdir=CHDIR) |
| 29 | 29 |
| 30 test.build('enable-winrt.gyp', 'enable_winrt_missing_dll', chdir=CHDIR, | 30 test.build('enable-winrt.gyp', 'enable_winrt_81_revision_dll', chdir=CHDIR) |
|
scottmg
2015/05/13 22:17:32
and only refer to the new .gyp file here (removing
coop
2015/05/13 22:40:51
Done.
| |
| 31 status=1) | |
| 32 | 31 |
| 33 test.build('enable-winrt.gyp', 'enable_winrt_winphone_dll', chdir=CHDIR) | 32 test.build('enable-winrt.gyp', 'enable_winrt_82_revision_dll', chdir=CHDIR) |
| 33 | |
| 34 test.build('enable-winrt.gyp', 'enable_winrt_invalid_revision_dll', | |
| 35 chdir=CHDIR, status=1) | |
| 34 | 36 |
| 35 test.pass_test() | 37 test.pass_test() |
| OLD | NEW |