Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 DEPS = [ | 5 DEPS = [ |
| 6 'ios', | 6 'ios', |
| 7 'platform', | 7 'platform', |
| 8 'properties', | 8 'properties', |
| 9 ] | 9 ] |
| 10 | 10 |
| 11 def GenSteps(api): | 11 def GenSteps(api): |
| 12 api.ios.host_info() | 12 api.ios.host_info() |
| 13 api.ios.checkout() | 13 api.ios.checkout() |
| 14 | 14 api.ios.read_build_config() |
| 15 # A try bot gets its config by reading a build config file as if it were | |
| 16 # running on the main waterfall. This ensures try bots always match the | |
| 17 # main waterfall config. | |
| 18 api.ios.read_build_config(master_name='chromium.mac') | |
|
smut
2015/02/20 19:42:10
I had to take this forced main waterfall matching
lliabraa
2015/02/20 20:29:25
Acknowledged.
| |
| 19 api.ios.build() | 15 api.ios.build() |
| 20 api.ios.test() | 16 api.ios.test() |
| 21 | 17 |
| 22 def GenTests(api): | 18 def GenTests(api): |
| 23 yield ( | 19 yield ( |
| 24 api.test('basic') | 20 api.test('basic') |
| 25 + api.platform('mac', 64) | 21 + api.platform('mac', 64) |
| 26 + api.properties(patch_url='patch url') | 22 + api.properties(patch_url='patch url') |
| 27 + api.properties( | 23 + api.properties( |
| 28 buildername='ios', | 24 buildername='ios', |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 79 'xcode version': 'fake xcode version', | 75 'xcode version': 'fake xcode version', |
| 80 'GYP_DEFINES': { | 76 'GYP_DEFINES': { |
| 81 'fake gyp define 1': 'fake value 1', | 77 'fake gyp define 1': 'fake value 1', |
| 82 'fake gyp define 2': 'fake value 2', | 78 'fake gyp define 2': 'fake value 2', |
| 83 }, | 79 }, |
| 84 'compiler': 'xcodebuild', | 80 'compiler': 'xcodebuild', |
| 85 'configuration': 'Debug', | 81 'configuration': 'Debug', |
| 86 'sdk': 'iphonesimulator8.0', | 82 'sdk': 'iphonesimulator8.0', |
| 87 }) | 83 }) |
| 88 ) | 84 ) |
| OLD | NEW |