Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Side by Side Diff: scripts/slave/recipes/chromium_gn.py

Issue 1111413005: Some changes to allow recipes and modules to live noncentrally (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Review comments Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 infra.libs.infra_types import freeze 5 from infra.libs.infra_types import freeze
6 6
7 DEPS = [ 7 DEPS = [
8 'bot_update', 8 'bot_update',
9 'chromium', 9 'chromium',
10 'chromium_tests', 10 'chromium_tests',
11 'json', 11 'json',
12 'path', 12 'path',
13 'platform', 13 'platform',
14 'properties', 14 'properties',
15 'step', 15 'step',
16 'test_utils', 16 'test_utils',
17 'tryserver', 17 'tryserver',
18 'webrtc',
18 ] 19 ]
19 20
20 21
21 BUILDERS = freeze({ 22 BUILDERS = freeze({
22 'chromium.mac': { 23 'chromium.mac': {
23 'builders': { 24 'builders': {
24 'Mac GN': { 25 'Mac GN': {
25 'chromium_config_kwargs': { 26 'chromium_config_kwargs': {
26 'BUILD_CONFIG': 'Release', 27 'BUILD_CONFIG': 'Release',
27 'TARGET_PLATFORM': 'mac', 28 'TARGET_PLATFORM': 'mac',
(...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after
572 'gtest_tests': ['base_unittests'], 573 'gtest_tests': ['base_unittests'],
573 }})) + 574 }})) +
574 api.override_step_data( 575 api.override_step_data(
575 'analyze', 576 'analyze',
576 api.json.output({ 577 api.json.output({
577 'status': 'Found dependency', 578 'status': 'Found dependency',
578 'targets': ['net_unittests'], 579 'targets': ['net_unittests'],
579 'build_targets': ['net_unittests'], 580 'build_targets': ['net_unittests'],
580 })) 581 }))
581 ) 582 )
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/webrtc/test_api.py ('k') | scripts/slave/unittests/recipe_configs_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698