Chromium Code Reviews| Index: masters/master.chromium.mac/master_mac_cfg.py |
| diff --git a/masters/master.chromium.mac/master_mac_cfg.py b/masters/master.chromium.mac/master_mac_cfg.py |
| index 3b87ec5676cb7b36927396f2af87eeeac60cb850..6bb087b98e686055ea244952f74021557da2e294 100644 |
| --- a/masters/master.chromium.mac/master_mac_cfg.py |
| +++ b/masters/master.chromium.mac/master_mac_cfg.py |
| @@ -311,7 +311,8 @@ F('ios_rel', ios().ChromiumFactory( |
| tests=[], |
| options = [ |
| '--', '-project', '../build/all.xcodeproj', '-sdk', |
| - 'iphoneos6.1', '-target' , 'All'], |
| +# 'iphoneos', '-target' , 'All'], # for xcode 5 |
|
smut
2013/11/19 23:49:20
Is upstream still on Xcode 4.6? Just remove this l
|
| + 'iphoneos6.1', '-target' , 'All'], # for xcode 4.6 |
| factory_properties={ |
| 'app_name': 'Chromium.app', |
| 'gclient_deps': 'ios', |
| @@ -321,6 +322,21 @@ F('ios_rel', ios().ChromiumFactory( |
| }, |
| })) |
| +B('iOS Device ninja', 'ios_rel_ninja', gatekeeper='ios_rel_ninja', |
| + scheduler='ios', auto_reboot=True, notify_on_missing=True) |
| +F('ios_rel_ninja', mac_out().ChromiumFactory( |
| + tests=[], |
| + options=['--build-tool=ninja'], |
| + factory_properties={ |
| + 'app_name': 'Chromium.app', |
| + 'gclient_deps': 'ios', |
| + 'gclient_env': { |
| + 'GYP_CROSSCOMPILE': '1', |
| + 'GYP_GENERATORS': 'ninja', |
| + 'GYP_DEFINES': 'component=static_library OS=ios clang=1', |
| + }, |
| + })) |
| + |
| # |
| # iOS Debug iphonesimulator BuilderTester |
| # |