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

Side by Side Diff: build/standalone.gypi

Issue 1284413002: Add experimental, non-snapshotted V8 extras (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@non-experimental-extras
Patch Set: Missing gn entries Created 5 years, 4 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 | « BUILD.gn ('k') | src/bootstrapper.h » ('j') | 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 'lsan%': '<(lsan)', 137 'lsan%': '<(lsan)',
138 'msan%': '<(msan)', 138 'msan%': '<(msan)',
139 'tsan%': '<(tsan)', 139 'tsan%': '<(tsan)',
140 'sanitizer_coverage%': '<(sanitizer_coverage)', 140 'sanitizer_coverage%': '<(sanitizer_coverage)',
141 'use_custom_libcxx%': '<(use_custom_libcxx)', 141 'use_custom_libcxx%': '<(use_custom_libcxx)',
142 'linux_use_bundled_gold%': '<(linux_use_bundled_gold)', 142 'linux_use_bundled_gold%': '<(linux_use_bundled_gold)',
143 'use_lto%': '<(use_lto)', 143 'use_lto%': '<(use_lto)',
144 'cfi_vptr%': '<(cfi_vptr)', 144 'cfi_vptr%': '<(cfi_vptr)',
145 'cfi_diag%': '<(cfi_diag)', 145 'cfi_diag%': '<(cfi_diag)',
146 146
147 # Add a simple extra solely for the purpose of the cctests 147 # Add a simple extras solely for the purpose of the cctests
148 'v8_extra_library_files': ['../test/cctest/test-extra.js'], 148 'v8_extra_library_files': ['../test/cctest/test-extra.js'],
149 'v8_experimental_extra_library_files': ['../test/cctest/test-experimental-ex tra.js'],
149 150
150 # .gyp files or targets should set v8_code to 1 if they build V8 specific 151 # .gyp files or targets should set v8_code to 1 if they build V8 specific
151 # code, as opposed to external code. This variable is used to control such 152 # code, as opposed to external code. This variable is used to control such
152 # things as the set of warnings to enable, and whether warnings are treated 153 # things as the set of warnings to enable, and whether warnings are treated
153 # as errors. 154 # as errors.
154 'v8_code%': 0, 155 'v8_code%': 0,
155 156
156 # Speeds up Debug builds: 157 # Speeds up Debug builds:
157 # 0 - Compiler optimizations off (debuggable) (default). This may 158 # 0 - Compiler optimizations off (debuggable) (default). This may
158 # be 5x slower than Release (or worse). 159 # be 5x slower than Release (or worse).
(...skipping 1109 matching lines...) Expand 10 before | Expand all | Expand 10 after
1268 '-fsanitize=cfi-vcall', 1269 '-fsanitize=cfi-vcall',
1269 '-fsanitize=cfi-derived-cast', 1270 '-fsanitize=cfi-derived-cast',
1270 '-fsanitize=cfi-unrelated-cast', 1271 '-fsanitize=cfi-unrelated-cast',
1271 ], 1272 ],
1272 }], 1273 }],
1273 ], 1274 ],
1274 }, 1275 },
1275 }], 1276 }],
1276 ], 1277 ],
1277 } 1278 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/bootstrapper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698