OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 from . import steps | 5 from . import steps |
6 | 6 |
7 SPEC = { | 7 SPEC = { |
8 'settings': { | 8 'settings': { |
9 'build_gs_bucket': 'chromium-fyi-archive', | 9 'build_gs_bucket': 'chromium-fyi-archive', |
10 }, | 10 }, |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 'GYP_DEFINES': { | 237 'GYP_DEFINES': { |
238 'use_openssl': '1', | 238 'use_openssl': '1', |
239 }, | 239 }, |
240 'tests': [ | 240 'tests': [ |
241 steps.DynamicGTestTests('Mac OpenSSL'), | 241 steps.DynamicGTestTests('Mac OpenSSL'), |
242 ], | 242 ], |
243 'testing': { | 243 'testing': { |
244 'platform': 'mac', | 244 'platform': 'mac', |
245 }, | 245 }, |
246 }, | 246 }, |
| 247 'Site Isolation Linux': { |
| 248 'recipe_config': 'chromium', |
| 249 'chromium_config_kwargs': { |
| 250 'BUILD_CONFIG': 'Release', |
| 251 'TARGET_BITS': 64, |
| 252 }, |
| 253 'bot_type': 'builder_tester', |
| 254 'compile_targets': [ |
| 255 'content_unittests', |
| 256 'content_browsertests', |
| 257 ], |
| 258 'test_generators': [ |
| 259 steps.generate_gtest, |
| 260 ], |
| 261 'testing': { |
| 262 'platform': 'linux', |
| 263 }, |
| 264 }, |
| 265 'Site Isolation Win': { |
| 266 'recipe_config': 'chromium', |
| 267 'chromium_config_kwargs': { |
| 268 'BUILD_CONFIG': 'Release', |
| 269 'TARGET_PLATFORM': 'win', |
| 270 'TARGET_BITS': 64, |
| 271 }, |
| 272 'bot_type': 'builder_tester', |
| 273 'compile_targets': [ |
| 274 'content_unittests', |
| 275 'content_browsertests', |
| 276 ], |
| 277 'test_generators': [ |
| 278 steps.generate_gtest, |
| 279 ], |
| 280 'testing': { |
| 281 'platform': 'win', |
| 282 }, |
| 283 }, |
247 }, | 284 }, |
248 } | 285 } |
OLD | NEW |