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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 'patch_root': 'src', | 312 'patch_root': 'src', |
313 'chromium_config_kwargs': { | 313 'chromium_config_kwargs': { |
314 'BUILD_CONFIG': 'Release', | 314 'BUILD_CONFIG': 'Release', |
315 'TARGET_BITS': 32, | 315 'TARGET_BITS': 32, |
316 }, | 316 }, |
317 'testing': { | 317 'testing': { |
318 'platform': 'win', | 318 'platform': 'win', |
319 }, | 319 }, |
320 }, | 320 }, |
321 'Cast Linux': { | 321 'Cast Linux': { |
322 'recipe_config': 'chromium', | 322 'recipe_config': 'cast_linux', |
323 'chromium_config_kwargs': { | 323 'chromium_config_kwargs': { |
324 'BUILD_CONFIG': 'Release', | 324 'BUILD_CONFIG': 'Release', |
325 'TARGET_BITS': 64, | 325 'TARGET_BITS': 64, |
326 }, | 326 }, |
327 'GYP_DEFINES': { | |
328 'chromecast': 1, | |
329 }, | |
330 'compile_targets': [ | |
331 'cast_shell' | |
332 ], | |
333 'test_generators': [ | 327 'test_generators': [ |
334 steps.generate_gtest, | 328 steps.generate_gtest, |
335 steps.generate_script, | 329 steps.generate_script, |
336 ], | 330 ], |
337 'testing': { | 331 'testing': { |
338 'platform': 'linux', | 332 'platform': 'linux', |
339 }, | 333 }, |
340 }, | 334 }, |
341 'Cast Android (dbg)': { | 335 'Cast Android (dbg)': { |
342 'recipe_config': 'chromium_android', | 336 'recipe_config': 'chromium_android', |
343 'chromium_config_kwargs': { | 337 'chromium_config_kwargs': { |
344 'BUILD_CONFIG': 'Debug', | 338 'BUILD_CONFIG': 'Debug', |
345 'TARGET_BITS': 32, | 339 'TARGET_BITS': 32, |
346 'TARGET_PLATFORM': 'android', | 340 'TARGET_PLATFORM': 'android', |
347 }, | 341 }, |
348 'android_config': 'cast_builder', | 342 'android_config': 'cast_builder', |
349 'compile_targets': [ | |
350 'cast_shell_apk' | |
351 ], | |
352 'testing': { | 343 'testing': { |
353 'platform': 'linux', | 344 'platform': 'linux', |
354 }, | 345 }, |
355 }, | 346 }, |
356 'ChromiumPractice': { | 347 'ChromiumPractice': { |
357 'recipe_config': 'chromium_blink_merged', | 348 'recipe_config': 'chromium_blink_merged', |
358 'chromium_config_kwargs': { | 349 'chromium_config_kwargs': { |
359 'BUILD_CONFIG': 'Release', | 350 'BUILD_CONFIG': 'Release', |
360 'TARGET_BITS': 64, | 351 'TARGET_BITS': 64, |
361 }, | 352 }, |
(...skipping 668 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1030 # Make sure to trigger it to make sure we respect compile targets | 1021 # Make sure to trigger it to make sure we respect compile targets |
1031 # returned by gyp analyzer. | 1022 # returned by gyp analyzer. |
1032 'all', | 1023 'all', |
1033 ], | 1024 ], |
1034 'testing': { | 1025 'testing': { |
1035 'platform': 'linux', | 1026 'platform': 'linux', |
1036 }, | 1027 }, |
1037 }, | 1028 }, |
1038 }, | 1029 }, |
1039 } | 1030 } |
OLD | NEW |