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

Side by Side Diff: build/standalone.gypi

Issue 962593003: Revert of Default-enable external startup data for Linux for stand-alone builds. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 (OS=="linux" or OS=="mac")', { 144 (OS=="linux" or OS=="mac")', {
145 'v8_enable_gdbjit%': 1, 145 'v8_enable_gdbjit%': 1,
146 }, { 146 }, {
147 'v8_enable_gdbjit%': 0, 147 'v8_enable_gdbjit%': 0,
148 }], 148 }],
149 ['(OS=="linux" or OS=="mac") and (target_arch=="ia32" or target_arch=="x64 ")', { 149 ['(OS=="linux" or OS=="mac") and (target_arch=="ia32" or target_arch=="x64 ")', {
150 'clang%': 1, 150 'clang%': 1,
151 }, { 151 }, {
152 'clang%': 0, 152 'clang%': 0,
153 }], 153 }],
154 ['(OS=="linux")', {
155 # Gradually roll out v8_use_external_startup_data.
156 # Should eventually be default enabled on all platforms.
157 'v8_use_external_startup_data%': 1,
158 }],
159 ], 154 ],
160 # Default ARM variable settings. 155 # Default ARM variable settings.
161 'arm_version%': 'default', 156 'arm_version%': 'default',
162 'arm_fpu%': 'vfpv3', 157 'arm_fpu%': 'vfpv3',
163 'arm_float_abi%': 'default', 158 'arm_float_abi%': 'default',
164 'arm_thumb': 'default', 159 'arm_thumb': 'default',
165 160
166 # Default MIPS variable settings. 161 # Default MIPS variable settings.
167 'mips_arch_variant%': 'r2', 162 'mips_arch_variant%': 'r2',
168 # Possible values fp32, fp64, fpxx. 163 # Possible values fp32, fp64, fpxx.
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after
521 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { 516 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', {
522 'make_global_settings': [ 517 'make_global_settings': [
523 ['CC_wrapper', '<(gomadir)/gomacc'], 518 ['CC_wrapper', '<(gomadir)/gomacc'],
524 ['CXX_wrapper', '<(gomadir)/gomacc'], 519 ['CXX_wrapper', '<(gomadir)/gomacc'],
525 ['CC.host_wrapper', '<(gomadir)/gomacc'], 520 ['CC.host_wrapper', '<(gomadir)/gomacc'],
526 ['CXX.host_wrapper', '<(gomadir)/gomacc'], 521 ['CXX.host_wrapper', '<(gomadir)/gomacc'],
527 ], 522 ],
528 }], 523 }],
529 ], 524 ],
530 } 525 }
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