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

Side by Side Diff: build/toolchain.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 2013 the V8 project authors. All rights reserved. 1 # Copyright 2013 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 74
75 # Chrome needs this definition unconditionally. For standalone V8 builds, 75 # Chrome needs this definition unconditionally. For standalone V8 builds,
76 # it's handled in build/standalone.gypi. 76 # it's handled in build/standalone.gypi.
77 'want_separate_host_toolset%': 1, 77 'want_separate_host_toolset%': 1,
78 78
79 # Toolset the d8 binary should be compiled for. Possible values are 'host' 79 # Toolset the d8 binary should be compiled for. Possible values are 'host'
80 # and 'target'. If you want to run v8 tests, it needs to be set to 'target'. 80 # and 'target'. If you want to run v8 tests, it needs to be set to 'target'.
81 # The setting is ignored if want_separate_host_toolset is 0. 81 # The setting is ignored if want_separate_host_toolset is 0.
82 'v8_toolset_for_d8%': 'target', 82 'v8_toolset_for_d8%': 'target',
83 83
84 # Control usage of a separate ignition snapshot file.
85 'v8_separate_ignition_snapshot%': 0,
86
84 'host_os%': '<(OS)', 87 'host_os%': '<(OS)',
85 'werror%': '-Werror', 88 'werror%': '-Werror',
86 # For a shared library build, results in "libv8-<(soname_version).so". 89 # For a shared library build, results in "libv8-<(soname_version).so".
87 'soname_version%': '', 90 'soname_version%': '',
88 91
89 # Allow to suppress the array bounds warning (default is no suppression). 92 # Allow to suppress the array bounds warning (default is no suppression).
90 'wno_array_bounds%': '', 93 'wno_array_bounds%': '',
91 94
92 # Override where to find binutils 95 # Override where to find binutils
93 'binutils_dir%': '', 96 'binutils_dir%': '',
(...skipping 1266 matching lines...) Expand 10 before | Expand all | Expand 10 after
1360 ['v8_enable_slow_dchecks==1', { 1363 ['v8_enable_slow_dchecks==1', {
1361 'defines': [ 1364 'defines': [
1362 'ENABLE_SLOW_DCHECKS', 1365 'ENABLE_SLOW_DCHECKS',
1363 ], 1366 ],
1364 }], 1367 }],
1365 ], # conditions 1368 ], # conditions
1366 }, # Release 1369 }, # Release
1367 }, # configurations 1370 }, # configurations
1368 }, # target_defaults 1371 }, # target_defaults
1369 } 1372 }
OLDNEW
« no previous file with comments | « build/standalone.gypi ('k') | src/base.isolate » ('j') | tools/gyp/v8.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698