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

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

Issue 2891533002: [Cronet] Use is_official_build=true for Cronet builds. (Closed)
Patch Set: Created 3 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
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 # This is a .pyl, or "Python Literal", file. You can treat it just like a 5 # This is a .pyl, or "Python Literal", file. You can treat it just like a
6 # .json file, with the following exceptions: 6 # .json file, with the following exceptions:
7 # * all keys must be quoted (use single quotes, please); 7 # * all keys must be quoted (use single quotes, please);
8 # * comments are allowed, using '#' syntax; and 8 # * comments are allowed, using '#' syntax; and
9 # * trailing commas are allowed. 9 # * trailing commas are allowed.
10 10
(...skipping 717 matching lines...) Expand 10 before | Expand all | Expand 10 after
728 728
729 'android_cronet_debug_static_bot_arm_no_neon': [ 729 'android_cronet_debug_static_bot_arm_no_neon': [
730 'android', 'cronet', 'debug_static_bot', 'arm_no_neon', 730 'android', 'cronet', 'debug_static_bot', 'arm_no_neon',
731 ], 731 ],
732 732
733 'android_cronet_debug_static_bot_x86': [ 733 'android_cronet_debug_static_bot_x86': [
734 'android', 'cronet', 'debug_static_bot', 'x86', 734 'android', 'cronet', 'debug_static_bot', 'x86',
735 ], 735 ],
736 736
737 'android_cronet_release_bot_minimal_symbols_arm64': [ 737 'android_cronet_release_bot_minimal_symbols_arm64': [
738 'android', 'cronet', 'release_bot', 'minimal_symbols', 'arm64', 738 'android', 'cronet', 'official_optimize', 'release_bot', 'minimal_symbols' , 'arm64',
jbudorick 2017/05/16 22:00:42 official_optimize and not official?
mef 2017/05/17 16:01:14 Hrm, good question. What does is_chrome_branded=tr
739 ], 739 ],
740 740
741 'android_cronet_release_bot_minimal_symbols_armv6': [ 741 'android_cronet_release_bot_minimal_symbols_armv6': [
742 'android', 'cronet', 'release_bot', 'minimal_symbols', 'armv6', 742 'android', 'cronet', 'official_optimize', 'release_bot', 'minimal_symbols' , 'armv6',
743 ], 743 ],
744 744
745 'android_cronet_release_bot_minimal_symbols_arm_no_neon': [ 745 'android_cronet_release_bot_minimal_symbols_arm_no_neon': [
746 'android', 'cronet', 'release_bot', 'minimal_symbols', 'arm_no_neon', 746 'android', 'cronet', 'official_optimize', 'release_bot', 'minimal_symbols' , 'arm_no_neon',
747 ], 747 ],
748 748
749 'android_cronet_release_bot_minimal_symbols_arm_no_neon_clang_asan': [ 749 'android_cronet_release_bot_minimal_symbols_arm_no_neon_clang_asan': [
750 'android', 'cronet', 'release_bot', 'minimal_symbols', 'arm_no_neon', 'cla ng', 'asan', 750 'android', 'cronet', 'official_optimize', 'release_bot', 'minimal_symbols' , 'arm_no_neon', 'clang', 'asan',
751 ], 751 ],
752 752
753 'android_cronet_release_bot_minimal_symbols_mipsel': [ 753 'android_cronet_release_bot_minimal_symbols_mipsel': [
754 'android', 'cronet', 'release_bot', 'minimal_symbols', 'mipsel', 754 'android', 'cronet', 'official_optimize', 'release_bot', 'minimal_symbols' , 'mipsel',
755 ], 755 ],
756 756
757 'android_cronet_release_bot_minimal_symbols_x86': [ 757 'android_cronet_release_bot_minimal_symbols_x86': [
758 'android', 'cronet', 'release_bot', 'minimal_symbols', 'x86', 758 'android', 'cronet', 'official_optimize', 'release_bot', 'minimal_symbols' , 'x86',
759 ], 759 ],
760 760
761 'android_cronet_release_trybot_arm_no_neon': [ 761 'android_cronet_release_trybot_arm_no_neon': [
762 'android', 'cronet', 'release_trybot', 'arm_no_neon', 762 'android', 'cronet', 'release_trybot', 'arm_no_neon',
763 ], 763 ],
764 764
765 'android_debug_bot': [ 765 'android_debug_bot': [
766 'android', 'debug_bot', 766 'android', 'debug_bot',
767 ], 767 ],
768 768
(...skipping 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after
1885 1885
1886 'x64': { 1886 'x64': {
1887 'gn_args': 'target_cpu="x64"', 1887 'gn_args': 'target_cpu="x64"',
1888 }, 1888 },
1889 1889
1890 'x86': { 1890 'x86': {
1891 'gn_args': 'target_cpu="x86"', 1891 'gn_args': 'target_cpu="x86"',
1892 }, 1892 },
1893 }, 1893 },
1894 } 1894 }
OLDNEW
« components/cronet/tools/cr_cronet.py ('K') | « components/cronet/tools/cr_cronet.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698