| 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/symbol.js", |
| 182 "src/array.js", | 182 "src/array.js", |
| 183 "src/string.js", | 183 "src/string.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/apinatives.js", |
| 188 "src/date.js", |
| 189 "src/regexp.js", |
| 190 "src/arraybuffer.js", |
| 191 "src/typedarray.js", |
| 192 "src/object-observe.js", |
| 193 "src/collection.js", |
| 194 "src/weak-collection.js", |
| 195 "src/collection-iterator.js", |
| 196 "src/promise.js", |
| 187 "src/messages.js", | 197 "src/messages.js", |
| 188 "src/apinatives.js", | 198 "src/json.js", |
| 199 "src/array-iterator.js", |
| 200 "src/string-iterator.js", |
| 189 "src/debug-debugger.js", | 201 "src/debug-debugger.js", |
| 190 "src/mirror-debugger.js", | 202 "src/mirror-debugger.js", |
| 191 "src/liveedit-debugger.js", | 203 "src/liveedit-debugger.js", |
| 192 "src/date.js", | |
| 193 "src/json.js", | |
| 194 "src/regexp.js", | |
| 195 "src/arraybuffer.js", | |
| 196 "src/typedarray.js", | |
| 197 "src/collection.js", | |
| 198 "src/collection-iterator.js", | |
| 199 "src/weak_collection.js", | |
| 200 "src/promise.js", | |
| 201 "src/object-observe.js", | |
| 202 "src/macros.py", | 204 "src/macros.py", |
| 203 "src/array-iterator.js", | |
| 204 "src/string-iterator.js", | |
| 205 ] | 205 ] |
| 206 | 206 |
| 207 outputs = [ | 207 outputs = [ |
| 208 "$target_gen_dir/libraries.cc" | 208 "$target_gen_dir/libraries.cc" |
| 209 ] | 209 ] |
| 210 | 210 |
| 211 if (v8_enable_i18n_support) { | 211 if (v8_enable_i18n_support) { |
| 212 sources += [ "src/i18n.js" ] | 212 sources += [ "src/i18n.js" ] |
| 213 } | 213 } |
| 214 | 214 |
| (...skipping 1056 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1271 deps = [ | 1271 deps = [ |
| 1272 ":v8_base", | 1272 ":v8_base", |
| 1273 ":v8_nosnapshot", | 1273 ":v8_nosnapshot", |
| 1274 ] | 1274 ] |
| 1275 } | 1275 } |
| 1276 | 1276 |
| 1277 direct_dependent_configs = [ ":external_config" ] | 1277 direct_dependent_configs = [ ":external_config" ] |
| 1278 } | 1278 } |
| 1279 | 1279 |
| 1280 } | 1280 } |
| OLD | NEW |