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

Side by Side Diff: BUILD.gn

Issue 293063005: Version 3.27.9.1 (merged r21405) (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | src/version.cc » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # TODO(jochen): These will need to be user-settable to support standalone V8 5 # TODO(jochen): These will need to be user-settable to support standalone V8
6 # builds. 6 # builds.
7 v8_compress_startup_data = "off" 7 v8_compress_startup_data = "off"
8 v8_deprecation_warnings = false 8 v8_deprecation_warnings = false
9 v8_enable_disassembler = false 9 v8_enable_disassembler = false
10 v8_enable_gdbjit = false 10 v8_enable_gdbjit = false
11 v8_enable_handle_zapping = true 11 v8_enable_handle_zapping = true
12 v8_enable_i18n_support = true 12 v8_enable_i18n_support = true
13 v8_enable_verify_heap = false 13 v8_enable_verify_heap = false
14 v8_interpreted_regexp = false 14 v8_interpreted_regexp = false
15 v8_object_print = false 15 v8_object_print = false
16 v8_postmortem_support = false 16 #v8_postmortem_support = false
17 v8_use_default_platform = true 17 v8_use_default_platform = true
18 v8_use_snapshot = true 18 #v8_use_snapshot = true
19 19
20 if (is_debug) { 20 if (is_debug) {
21 v8_enable_extra_checks = true 21 v8_enable_extra_checks = true
22 } else { 22 } else {
23 v8_enable_extra_checks = false 23 v8_enable_extra_checks = false
24 } 24 }
25 25
26 # TODO(jochen): Add support for want_seperate_host_toolset. 26 # TODO(jochen): Add support for want_seperate_host_toolset.
27 # TODO(jochen): Add toolchain.gypi support. 27 # TODO(jochen): Add toolchain.gypi support.
28 28
(...skipping 836 matching lines...) Expand 10 before | Expand all | Expand 10 after
865 ":v8_base", 865 ":v8_base",
866 ":v8_nosnapshot", 866 ":v8_nosnapshot",
867 ] 867 ]
868 868
869 if (v8_compress_startup_data == "bz2") { 869 if (v8_compress_startup_data == "bz2") {
870 libs = [ "bz2" ] 870 libs = [ "bz2" ]
871 } 871 }
872 } 872 }
873 873
874 } 874 }
OLDNEW
« no previous file with comments | « no previous file | src/version.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698