| 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 | 171 |
| 172 script = "tools/js2c.py" | 172 script = "tools/js2c.py" |
| 173 | 173 |
| 174 # The script depends on this other script, this rule causes a rebuild if it | 174 # The script depends on this other script, this rule causes a rebuild if it |
| 175 # changes. | 175 # changes. |
| 176 source_prereqs = [ "tools/jsmin.py" ] | 176 source_prereqs = [ "tools/jsmin.py" ] |
| 177 | 177 |
| 178 sources = [ | 178 sources = [ |
| 179 "src/runtime.js", | 179 "src/runtime.js", |
| 180 "src/v8natives.js", | 180 "src/v8natives.js", |
| 181 "src/symbol.js", |
| 181 "src/array.js", | 182 "src/array.js", |
| 182 "src/string.js", | 183 "src/string.js", |
| 183 "src/symbol.js", | |
| 184 "src/uri.js", | 184 "src/uri.js", |
| 185 "third_party/fdlibm/fdlibm.js", | 185 "third_party/fdlibm/fdlibm.js", |
| 186 "src/math.js", | 186 "src/math.js", |
| 187 "src/messages.js", | 187 "src/messages.js", |
| 188 "src/apinatives.js", | 188 "src/apinatives.js", |
| 189 "src/debug-debugger.js", | 189 "src/debug-debugger.js", |
| 190 "src/mirror-debugger.js", | 190 "src/mirror-debugger.js", |
| 191 "src/liveedit-debugger.js", | 191 "src/liveedit-debugger.js", |
| 192 "src/date.js", | 192 "src/date.js", |
| 193 "src/json.js", | 193 "src/json.js", |
| (...skipping 1078 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1272 deps = [ | 1272 deps = [ |
| 1273 ":v8_base", | 1273 ":v8_base", |
| 1274 ":v8_nosnapshot", | 1274 ":v8_nosnapshot", |
| 1275 ] | 1275 ] |
| 1276 } | 1276 } |
| 1277 | 1277 |
| 1278 direct_dependent_configs = [ ":external_config" ] | 1278 direct_dependent_configs = [ ":external_config" ] |
| 1279 } | 1279 } |
| 1280 | 1280 |
| 1281 } | 1281 } |
| OLD | NEW |