| 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 # changes. | 187 # changes. |
| 188 source_prereqs = [ "tools/jsmin.py" ] | 188 source_prereqs = [ "tools/jsmin.py" ] |
| 189 | 189 |
| 190 sources = [ | 190 sources = [ |
| 191 "src/runtime.js", | 191 "src/runtime.js", |
| 192 "src/v8natives.js", | 192 "src/v8natives.js", |
| 193 "src/array.js", | 193 "src/array.js", |
| 194 "src/string.js", | 194 "src/string.js", |
| 195 "src/symbol.js", | 195 "src/symbol.js", |
| 196 "src/uri.js", | 196 "src/uri.js", |
| 197 "third_party/fdlibm/fdlibm.js", | |
| 198 "src/math.js", | 197 "src/math.js", |
| 199 "src/messages.js", | 198 "src/messages.js", |
| 200 "src/apinatives.js", | 199 "src/apinatives.js", |
| 201 "src/debug-debugger.js", | 200 "src/debug-debugger.js", |
| 202 "src/mirror-debugger.js", | 201 "src/mirror-debugger.js", |
| 203 "src/liveedit-debugger.js", | 202 "src/liveedit-debugger.js", |
| 204 "src/date.js", | 203 "src/date.js", |
| 205 "src/json.js", | 204 "src/json.js", |
| 206 "src/regexp.js", | 205 "src/regexp.js", |
| 207 "src/arraybuffer.js", | 206 "src/arraybuffer.js", |
| (...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 859 "src/v8threads.h", | 858 "src/v8threads.h", |
| 860 "src/variables.cc", | 859 "src/variables.cc", |
| 861 "src/variables.h", | 860 "src/variables.h", |
| 862 "src/version.cc", | 861 "src/version.cc", |
| 863 "src/version.h", | 862 "src/version.h", |
| 864 "src/vm-state-inl.h", | 863 "src/vm-state-inl.h", |
| 865 "src/vm-state.h", | 864 "src/vm-state.h", |
| 866 "src/zone-inl.h", | 865 "src/zone-inl.h", |
| 867 "src/zone.cc", | 866 "src/zone.cc", |
| 868 "src/zone.h", | 867 "src/zone.h", |
| 869 "third_party/fdlibm/fdlibm.cc', | |
| 870 "third_party/fdlibm/fdlibm.h', | |
| 871 ] | 868 ] |
| 872 | 869 |
| 873 if (v8_target_arch == "x86") { | 870 if (v8_target_arch == "x86") { |
| 874 sources += [ | 871 sources += [ |
| 875 "src/ia32/assembler-ia32-inl.h", | 872 "src/ia32/assembler-ia32-inl.h", |
| 876 "src/ia32/assembler-ia32.cc", | 873 "src/ia32/assembler-ia32.cc", |
| 877 "src/ia32/assembler-ia32.h", | 874 "src/ia32/assembler-ia32.h", |
| 878 "src/ia32/builtins-ia32.cc", | 875 "src/ia32/builtins-ia32.cc", |
| 879 "src/ia32/code-stubs-ia32.cc", | 876 "src/ia32/code-stubs-ia32.cc", |
| 880 "src/ia32/code-stubs-ia32.h", | 877 "src/ia32/code-stubs-ia32.h", |
| (...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1288 deps = [ | 1285 deps = [ |
| 1289 ":v8_base", | 1286 ":v8_base", |
| 1290 ":v8_nosnapshot", | 1287 ":v8_nosnapshot", |
| 1291 ] | 1288 ] |
| 1292 } | 1289 } |
| 1293 | 1290 |
| 1294 direct_dependent_configs = [ ":external_config" ] | 1291 direct_dependent_configs = [ ":external_config" ] |
| 1295 } | 1292 } |
| 1296 | 1293 |
| 1297 } | 1294 } |
| OLD | NEW |