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

Side by Side Diff: gypfiles/toolchain.gypi

Issue 2027213002: Move (hopefully) remaining isolate related variables to toolchain.gypi (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 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 | « gypfiles/standalone.gypi ('k') | 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 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 11 matching lines...) Expand all
22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 # Shared definitions for all V8-related targets. 28 # Shared definitions for all V8-related targets.
29 29
30 { 30 {
31 'variables': { 31 'variables': {
32 'variables': {
33 'variables': {
34 # Instrument for code coverage and use coverage wrapper to exclude some
35 # files. Uses gcov if clang=0 is set explicitly. Otherwise,
36 # sanitizer_coverage must be set too.
37 'coverage%': 0,
Michael Achenbach 2016/06/02 06:46:03 Did you remove this somewhere in return?
jochen (gone - plz use gerrit) 2016/06/02 06:48:39 it's also used in standalone.gypi directly, and th
38 },
39
40 'coverage%': '<(coverage)',
41
42 # Check if valgrind directories are present.
43 'has_valgrind%': '<!pymod_do_main(has_valgrind)',
44 },
32 'msvs_use_common_release': 0, 45 'msvs_use_common_release': 0,
33 'clang%': 0, 46 'clang%': 0,
34 'asan%': 0, 47 'asan%': 0,
35 'lsan%': 0, 48 'lsan%': 0,
36 'msan%': 0, 49 'msan%': 0,
37 'tsan%': 0, 50 'tsan%': 0,
38 'ubsan%': 0, 51 'ubsan%': 0,
39 'ubsan_vptr%': 0, 52 'ubsan_vptr%': 0,
53 'has_valgrind%': '<(has_valgrind)',
54 'coverage%': '<(coverage)',
40 'v8_target_arch%': '<(target_arch)', 55 'v8_target_arch%': '<(target_arch)',
41 'v8_host_byteorder%': '<!(python -c "import sys; print sys.byteorder")', 56 'v8_host_byteorder%': '<!(python -c "import sys; print sys.byteorder")',
42 # Native Client builds currently use the V8 ARM JIT and 57 # Native Client builds currently use the V8 ARM JIT and
43 # arm/simulator-arm.cc to defer the significant effort required 58 # arm/simulator-arm.cc to defer the significant effort required
44 # for NaCl JIT support. The nacl_target_arch variable provides 59 # for NaCl JIT support. The nacl_target_arch variable provides
45 # the 'true' target arch for places in this file that need it. 60 # the 'true' target arch for places in this file that need it.
46 # TODO(bradchen): get rid of nacl_target_arch when someday 61 # TODO(bradchen): get rid of nacl_target_arch when someday
47 # NaCl V8 builds stop using the ARM simulator 62 # NaCl V8 builds stop using the ARM simulator
48 'nacl_target_arch%': 'none', # must be set externally 63 'nacl_target_arch%': 'none', # must be set externally
49 64
(...skipping 1338 matching lines...) Expand 10 before | Expand all | Expand 10 after
1388 ], 1403 ],
1389 }, 1404 },
1390 'Release_x64': { 1405 'Release_x64': {
1391 'inherit_from': ['ReleaseBase'], 1406 'inherit_from': ['ReleaseBase'],
1392 }, 1407 },
1393 }], 1408 }],
1394 ], 1409 ],
1395 }, # configurations 1410 }, # configurations
1396 }, # target_defaults 1411 }, # target_defaults
1397 } 1412 }
OLDNEW
« no previous file with comments | « gypfiles/standalone.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698