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

Side by Side Diff: tools/mb/mb_config.pyl

Issue 2066483002: gn: Make target_cpu=x86 v8_target_arch=arm builds generate build files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: also make it work Created 4 years, 6 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
« build/config/arm.gni ('K') | « build/config/arm.gni ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 { 5 {
6 # This is a map of buildbot master names -> buildbot builder names -> 6 # This is a map of buildbot master names -> buildbot builder names ->
7 # config names (where each config name is a key in the 'configs' dict, 7 # config names (where each config name is a key in the 'configs' dict,
8 # below). MB uses this dict to look up which config to use for a given bot. 8 # below). MB uses this dict to look up which config to use for a given bot.
9 'masters': { 9 'masters': {
10 # Take care when changing any of these builders to ensure that you do not 10 # Take care when changing any of these builders to ensure that you do not
(...skipping 2097 matching lines...) Expand 10 before | Expand all | Expand 10 after
2108 'gyp_defines': 'use_goma=1', 2108 'gyp_defines': 'use_goma=1',
2109 }, 2109 },
2110 2110
2111 'gpu_tests': { 2111 'gpu_tests': {
2112 'mixins': ['archive_gpu_tests', 'chrome_with_codecs'], 2112 'mixins': ['archive_gpu_tests', 'chrome_with_codecs'],
2113 }, 2113 },
2114 2114
2115 'gyp': {'type': 'gyp'}, 2115 'gyp': {'type': 'gyp'},
2116 2116
2117 'hybrid': { 2117 'hybrid': {
2118 'gn_args': 'v8_target_cpu="arm" target_cpu="x86"', 2118 'gn_args': 'v8_target_arch="arm" target_cpu="x86"',
2119 'gyp_defines': 'v8_target_arch=arm target_arch=ia32 host_arch=x86_64', 2119 'gyp_defines': 'v8_target_arch=arm target_arch=ia32 host_arch=x86_64',
2120 'mixins': ['disable_nacl'], 2120 'mixins': ['disable_nacl'],
2121 }, 2121 },
2122 2122
2123 'internal_gles2_conform_tests': { 2123 'internal_gles2_conform_tests': {
2124 'gn_args': 'internal_gles2_conform_tests=true', 2124 'gn_args': 'internal_gles2_conform_tests=true',
2125 'gyp_defines': 'internal_gles2_conform_tests=1', 2125 'gyp_defines': 'internal_gles2_conform_tests=1',
2126 }, 2126 },
2127 2127
2128 'java_coverage': { 2128 'java_coverage': {
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
2327 }, 2327 },
2328 2328
2329 'drfuzz': { 'gn_args': 'use_drfuzz=true' }, 2329 'drfuzz': { 'gn_args': 'use_drfuzz=true' },
2330 2330
2331 'drmemory': { 2331 'drmemory': {
2332 'gn_args': 'is_component_build=true enable_iterator_debugging=false', 2332 'gn_args': 'is_component_build=true enable_iterator_debugging=false',
2333 'gyp_defines': 'component=shared_library build_for_tool=drmemory', 2333 'gyp_defines': 'component=shared_library build_for_tool=drmemory',
2334 }, 2334 },
2335 }, 2335 },
2336 } 2336 }
OLDNEW
« build/config/arm.gni ('K') | « build/config/arm.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698