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 |
agable
2013/11/22 00:22:40
Don't commit commented out code :)
pgervais
2013/11/22 00:46:35
As you which, but the next person will spend some
|
+ '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', |
agable
2013/11/22 00:22:40
Just confirming that this configuration has been r
pgervais
2013/11/22 00:46:35
I ran it locally on my mac pro, on a real iPad and
|
+ 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 |
# |