| OLD | NEW |
| 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 |
| (...skipping 916 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 927 ":v8_base", | 927 ":v8_base", |
| 928 ":v8_nosnapshot", | 928 ":v8_nosnapshot", |
| 929 ] | 929 ] |
| 930 | 930 |
| 931 if (v8_compress_startup_data == "bz2") { | 931 if (v8_compress_startup_data == "bz2") { |
| 932 libs = [ "bz2" ] | 932 libs = [ "bz2" ] |
| 933 } | 933 } |
| 934 } | 934 } |
| 935 | 935 |
| 936 } | 936 } |
| 937 |
| 938 group("v8") { |
| 939 } |
| OLD | NEW |