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

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

Issue 2579103002: [Android] Fix ndk_next gn args in mb_config. (Closed)
Patch Set: Created 4 years 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 | 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 'chromeos.chrome': { 10 'chromeos.chrome': {
(...skipping 1720 matching lines...) Expand 10 before | Expand all | Expand 10 after
1731 1731
1732 'msan': { 1732 'msan': {
1733 'gn_args': 'is_msan=true msan_track_origins=2 use_prebuilt_instrumented_li braries=true', 1733 'gn_args': 'is_msan=true msan_track_origins=2 use_prebuilt_instrumented_li braries=true',
1734 }, 1734 },
1735 1735
1736 'msan_no_origins': { 1736 'msan_no_origins': {
1737 'gn_args': 'is_msan=true msan_track_origins=0 use_prebuilt_instrumented_li braries=true', 1737 'gn_args': 'is_msan=true msan_track_origins=0 use_prebuilt_instrumented_li braries=true',
1738 }, 1738 },
1739 1739
1740 'ndk_next': { 1740 'ndk_next': {
1741 'gn_args': 'android_ndk_version=r13b android_ndk_major_version=13', 1741 'gn_args': 'android_ndk_version="r13b" android_ndk_major_version="13"',
1742 }, 1742 },
1743 1743
1744 'no_pch': { 1744 'no_pch': {
1745 'gn_args': 'enable_precompiled_headers=false', 1745 'gn_args': 'enable_precompiled_headers=false',
1746 }, 1746 },
1747 1747
1748 'no_symbols': { 1748 'no_symbols': {
1749 'gn_args': 'symbol_level=0', 1749 'gn_args': 'symbol_level=0',
1750 }, 1750 },
1751 1751
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
1860 1860
1861 'x64': { 1861 'x64': {
1862 'gn_args': 'target_cpu="x64"', 1862 'gn_args': 'target_cpu="x64"',
1863 }, 1863 },
1864 1864
1865 'x86': { 1865 'x86': {
1866 'gn_args': 'target_cpu="x86"', 1866 'gn_args': 'target_cpu="x86"',
1867 }, 1867 },
1868 }, 1868 },
1869 } 1869 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698