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

Side by Side Diff: build/standalone.gypi

Issue 1667673003: [Ignition] Use separate startup data for ignition. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Move to correct condition section. Created 4 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
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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 # or need a debug version of V8. This should produce near-release 188 # or need a debug version of V8. This should produce near-release
189 # speeds. 189 # speeds.
190 'v8_optimized_debug%': 0, 190 'v8_optimized_debug%': 0,
191 191
192 # Use external files for startup data blobs: 192 # Use external files for startup data blobs:
193 # the JS builtins sources and the start snapshot. 193 # the JS builtins sources and the start snapshot.
194 # Embedders that don't use standalone.gypi will need to add 194 # Embedders that don't use standalone.gypi will need to add
195 # their own default value. 195 # their own default value.
196 'v8_use_external_startup_data%': 1, 196 'v8_use_external_startup_data%': 1,
197 197
198 # Use a separate ignition snapshot file in standalone builds.
199 'v8_separate_ignition_snapshot': 1,
200
198 # Relative path to icu.gyp from this file. 201 # Relative path to icu.gyp from this file.
199 'icu_gyp_path': '../third_party/icu/icu.gyp', 202 'icu_gyp_path': '../third_party/icu/icu.gyp',
200 203
201 'conditions': [ 204 'conditions': [
202 ['(v8_target_arch=="arm" and host_arch!="arm") or \ 205 ['(v8_target_arch=="arm" and host_arch!="arm") or \
203 (v8_target_arch=="arm64" and host_arch!="arm64") or \ 206 (v8_target_arch=="arm64" and host_arch!="arm64") or \
204 (v8_target_arch=="mipsel" and host_arch!="mipsel") or \ 207 (v8_target_arch=="mipsel" and host_arch!="mipsel") or \
205 (v8_target_arch=="mips64el" and host_arch!="mips64el") or \ 208 (v8_target_arch=="mips64el" and host_arch!="mips64el") or \
206 (v8_target_arch=="x64" and host_arch!="x64") or \ 209 (v8_target_arch=="x64" and host_arch!="x64") or \
207 (OS=="android" or OS=="qnx")', { 210 (OS=="android" or OS=="qnx")', {
(...skipping 1153 matching lines...) Expand 10 before | Expand all | Expand 10 after
1361 '-fsanitize=cfi-vcall', 1364 '-fsanitize=cfi-vcall',
1362 '-fsanitize=cfi-derived-cast', 1365 '-fsanitize=cfi-derived-cast',
1363 '-fsanitize=cfi-unrelated-cast', 1366 '-fsanitize=cfi-unrelated-cast',
1364 ], 1367 ],
1365 }], 1368 }],
1366 ], 1369 ],
1367 }, 1370 },
1368 }], 1371 }],
1369 ], 1372 ],
1370 } 1373 }
OLDNEW
« no previous file with comments | « build/isolate.gypi ('k') | build/toolchain.gypi » ('j') | tools/gyp/v8.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698