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

Side by Side Diff: scripts/slave/recipe_modules/chromium/chromium_fyi.py

Issue 946403002: Fix "analyze" on linux_chromium_clobber_rel_ng always compiling everything (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 9 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
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium.expected/full_chromium_fyi_Linux_Builder__clobber_.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 . 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 755 matching lines...) Expand 10 before | Expand all | Expand 10 after
766 'add_tests_as_compile_targets': False, 766 'add_tests_as_compile_targets': False,
767 }, 767 },
768 'Linux Builder (clobber)': { 768 'Linux Builder (clobber)': {
769 'recipe_config': 'chromium', 769 'recipe_config': 'chromium',
770 'chromium_apply_config': ['clobber'], 770 'chromium_apply_config': ['clobber'],
771 'chromium_config_kwargs': { 771 'chromium_config_kwargs': {
772 'BUILD_CONFIG': 'Release', 772 'BUILD_CONFIG': 'Release',
773 'TARGET_BITS': 64, 773 'TARGET_BITS': 64,
774 }, 774 },
775 'compile_targets': [ 775 'compile_targets': [
776 'chromium_swarm_tests', 776 # chromium_tests.analyze treats "all" compile target in a special way;
777 # Make sure to trigger it to make sure we respect compile targets
778 # returned by gyp analyzer.
779 'all',
777 ], 780 ],
778 'testing': { 781 'testing': {
779 'platform': 'linux', 782 'platform': 'linux',
780 }, 783 },
781 }, 784 },
782 }, 785 },
783 } 786 }
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium.expected/full_chromium_fyi_Linux_Builder__clobber_.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698