| 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 # Because standalone V8 builds are not supported, assume this is part of a | 5 # Because standalone V8 builds are not supported, assume this is part of a |
| 6 # Chromium build. | 6 # Chromium build. |
| 7 import("//build/module_args/v8.gni") | 7 import("//build/module_args/v8.gni") |
| 8 | 8 |
| 9 # TODO(jochen): These will need to be user-settable to support standalone V8 | 9 # TODO(jochen): These will need to be user-settable to support standalone V8 |
| 10 # builds. | 10 # builds. |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 # changes. | 166 # changes. |
| 167 inputs = [ "tools/jsmin.py" ] | 167 inputs = [ "tools/jsmin.py" ] |
| 168 | 168 |
| 169 sources = [ | 169 sources = [ |
| 170 "src/runtime.js", | 170 "src/runtime.js", |
| 171 "src/v8natives.js", | 171 "src/v8natives.js", |
| 172 "src/symbol.js", | 172 "src/symbol.js", |
| 173 "src/array.js", | 173 "src/array.js", |
| 174 "src/string.js", | 174 "src/string.js", |
| 175 "src/uri.js", | 175 "src/uri.js", |
| 176 "src/math.js", |
| 176 "src/third_party/fdlibm/fdlibm.js", | 177 "src/third_party/fdlibm/fdlibm.js", |
| 177 "src/math.js", | |
| 178 "src/date.js", | 178 "src/date.js", |
| 179 "src/regexp.js", | 179 "src/regexp.js", |
| 180 "src/arraybuffer.js", | 180 "src/arraybuffer.js", |
| 181 "src/typedarray.js", | 181 "src/typedarray.js", |
| 182 "src/generator.js", | 182 "src/generator.js", |
| 183 "src/object-observe.js", | 183 "src/object-observe.js", |
| 184 "src/collection.js", | 184 "src/collection.js", |
| 185 "src/weak-collection.js", | 185 "src/weak-collection.js", |
| 186 "src/collection-iterator.js", | 186 "src/collection-iterator.js", |
| 187 "src/promise.js", | 187 "src/promise.js", |
| (...skipping 1369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1557 sources += [ | 1557 sources += [ |
| 1558 "src/d8-debug.cc", | 1558 "src/d8-debug.cc", |
| 1559 "$target_gen_dir/d8-js.cc", | 1559 "$target_gen_dir/d8-js.cc", |
| 1560 ] | 1560 ] |
| 1561 } | 1561 } |
| 1562 if (v8_enable_i18n_support) { | 1562 if (v8_enable_i18n_support) { |
| 1563 deps += [ "//third_party/icu" ] | 1563 deps += [ "//third_party/icu" ] |
| 1564 } | 1564 } |
| 1565 } | 1565 } |
| 1566 } | 1566 } |
| OLD | NEW |