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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/chromium_chrome.py

Issue 2095673003: Enable hermetic build for Google Chrome Mac official. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium.expected/full_chromium_chrome_Google_Chrome_Mac.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 RESULTS_URL = 'https://chromeperf.appspot.com' 7 RESULTS_URL = 'https://chromeperf.appspot.com'
8 8
9 SPEC = { 9 SPEC = {
10 'builders': { 10 'builders': {
(...skipping 30 matching lines...) Expand all
41 ], 41 ],
42 'testing': { 42 'testing': {
43 'platform': 'linux', 43 'platform': 'linux',
44 }, 44 },
45 'tests': { 45 'tests': {
46 steps.SizesStep(RESULTS_URL, 'Google Chrome Linux x64') 46 steps.SizesStep(RESULTS_URL, 'Google Chrome Linux x64')
47 }, 47 },
48 }, 48 },
49 'Google Chrome Mac': { 49 'Google Chrome Mac': {
50 'chromium_config': 'chromium_official', 50 'chromium_config': 'chromium_official',
51 'chromium_apply_config': ['mb'], 51 'chromium_apply_config': ['mb', 'force_mac_toolchain'],
52 'gclient_config': 'chromium', 52 'gclient_config': 'chromium',
53 'gclient_apply_config': ['chrome_internal'], 53 'gclient_apply_config': ['chrome_internal'],
54 'chromium_config_kwargs': { 54 'chromium_config_kwargs': {
55 'BUILD_CONFIG': 'Release', 55 'BUILD_CONFIG': 'Release',
56 'TARGET_BITS': 64, 56 'TARGET_BITS': 64,
57 }, 57 },
58 'compile_targets': [ 58 'compile_targets': [
59 'chrome', 59 'chrome',
60 ], 60 ],
61 'testing': { 61 'testing': {
(...skipping 17 matching lines...) Expand all
79 ], 79 ],
80 'testing': { 80 'testing': {
81 'platform': 'win', 81 'platform': 'win',
82 }, 82 },
83 'tests': { 83 'tests': {
84 steps.SizesStep(RESULTS_URL, 'Google Chrome Win') 84 steps.SizesStep(RESULTS_URL, 'Google Chrome Win')
85 }, 85 },
86 }, 86 },
87 }, 87 },
88 } 88 }
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium.expected/full_chromium_chrome_Google_Chrome_Mac.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698