Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: test/win/gyptest-link-enable-winrt-app-revision.py

Issue 1132743006: Added msvs_application_type_revision for winrt compilation (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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()
OLDNEW
« test/win/gyptest-link-enable-winrt.py ('K') | « test/win/gyptest-link-enable-winrt.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698