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

Side by Side Diff: test/ios/deployment-target/deployment-target.gyp

Issue 12725005: improve xcode_emulation.py (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: test/{xcode => mac}, fixed ios tests with 'xcode' Created 7 years, 9 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright (c) 2013 Google Inc. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4 {
5 'targets': [
6 {
7 'target_name': 'iphoneos-version-min-4.3',
8 'type': 'static_library',
9 'sources': [ 'check-version-min.c', ],
10 'defines': [ 'GYPTEST_IOS_VERSION_MIN=40300', ],
11 'xcode_settings': {
12 'ARCHS': [ 'armv7' ],
13 'SDKROOT': 'iphoneos',
14 'IPHONEOS_DEPLOYMENT_TARGET': '4.3',
15 },
16 },
17 {
18 'target_name': 'iphoneos-version-min-5.0',
19 'type': 'static_library',
20 'sources': [ 'check-version-min.c', ],
21 'defines': [ 'GYPTEST_IOS_VERSION_MIN=50000', ],
22 'xcode_settings': {
23 'ARCHS': [ 'armv7' ],
24 'SDKROOT': 'iphoneos',
25 'IPHONEOS_DEPLOYMENT_TARGET': '5.0',
26 },
27 },
28 {
29 'target_name': 'iphonesimulator-version-min-4.3',
30 'type': 'static_library',
31 'sources': [ 'check-version-min.c', ],
32 'defines': [ 'GYPTEST_IOS_VERSION_MIN=40300', ],
33 'xcode_settings': {
34 'SDKROOT': 'iphonesimulator',
35 'IPHONEOS_DEPLOYMENT_TARGET': '4.3',
36 },
37 },
38 {
39 'target_name': 'iphonesimulator-version-min-5.0',
40 'type': 'static_library',
41 'sources': [ 'check-version-min.c', ],
42 'defines': [ 'GYPTEST_IOS_VERSION_MIN=50000', ],
43 'xcode_settings': {
44 'SDKROOT': 'iphonesimulator',
45 'IPHONEOS_DEPLOYMENT_TARGET': '5.0',
46 },
47 },
48 ],
49 }
50
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698