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

Side by Side Diff: build/standalone.gypi

Issue 1041683002: Re-land: Enable external startup by default on Linux. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Don't enable for builds with different host/target toolsets. Created 5 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
« 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 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 }], 194 }],
195 ['tsan==1', { 195 ['tsan==1', {
196 'use_custom_libcxx%': 1, 196 'use_custom_libcxx%': 1,
197 }], 197 }],
198 ['msan==1', { 198 ['msan==1', {
199 # Use a just-built, MSan-instrumented libc++ instead of the system-wide 199 # Use a just-built, MSan-instrumented libc++ instead of the system-wide
200 # libstdc++. This is required to avoid false positive reports whenever 200 # libstdc++. This is required to avoid false positive reports whenever
201 # the C++ standard library is used. 201 # the C++ standard library is used.
202 'use_custom_libcxx%': 1, 202 'use_custom_libcxx%': 1,
203 }], 203 }],
204 ['OS=="linux" and v8_target_arch==host_arch', {
205 # Gradually roll out v8_use_external_startup_data.
206 # Should eventually be default enabled on all platforms.
207 'v8_use_external_startup_data%': 1,
208 }],
204 ], 209 ],
205 # Default ARM variable settings. 210 # Default ARM variable settings.
206 'arm_version%': 'default', 211 'arm_version%': 'default',
207 'arm_fpu%': 'vfpv3', 212 'arm_fpu%': 'vfpv3',
208 'arm_float_abi%': 'default', 213 'arm_float_abi%': 'default',
209 'arm_thumb': 'default', 214 'arm_thumb': 'default',
210 215
211 # Default MIPS variable settings. 216 # Default MIPS variable settings.
212 'mips_arch_variant%': 'r2', 217 'mips_arch_variant%': 'r2',
213 # Possible values fp32, fp64, fpxx. 218 # Possible values fp32, fp64, fpxx.
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after
721 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { 726 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', {
722 'make_global_settings': [ 727 'make_global_settings': [
723 ['CC_wrapper', '<(gomadir)/gomacc'], 728 ['CC_wrapper', '<(gomadir)/gomacc'],
724 ['CXX_wrapper', '<(gomadir)/gomacc'], 729 ['CXX_wrapper', '<(gomadir)/gomacc'],
725 ['CC.host_wrapper', '<(gomadir)/gomacc'], 730 ['CC.host_wrapper', '<(gomadir)/gomacc'],
726 ['CXX.host_wrapper', '<(gomadir)/gomacc'], 731 ['CXX.host_wrapper', '<(gomadir)/gomacc'],
727 ], 732 ],
728 }], 733 }],
729 ], 734 ],
730 } 735 }
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