| 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 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
| 7 import("//build/config/mips.gni") | 7 import("//build/config/mips.gni") |
| 8 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
| 9 | 9 |
| 10 # Because standalone V8 builds are not supported, assume this is part of a | 10 # Because standalone V8 builds are not supported, assume this is part of a |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 "src/js/object-observe.js", | 222 "src/js/object-observe.js", |
| 223 "src/js/collection.js", | 223 "src/js/collection.js", |
| 224 "src/js/weak-collection.js", | 224 "src/js/weak-collection.js", |
| 225 "src/js/collection-iterator.js", | 225 "src/js/collection-iterator.js", |
| 226 "src/js/promise.js", | 226 "src/js/promise.js", |
| 227 "src/js/messages.js", | 227 "src/js/messages.js", |
| 228 "src/js/json.js", | 228 "src/js/json.js", |
| 229 "src/js/array-iterator.js", | 229 "src/js/array-iterator.js", |
| 230 "src/js/string-iterator.js", | 230 "src/js/string-iterator.js", |
| 231 "src/js/templates.js", | 231 "src/js/templates.js", |
| 232 "src/js/harmony-array.js", | |
| 233 "src/js/harmony-typedarray.js", | |
| 234 "src/js/spread.js", | 232 "src/js/spread.js", |
| 235 "src/debug/mirrors.js", | 233 "src/debug/mirrors.js", |
| 236 "src/debug/debug.js", | 234 "src/debug/debug.js", |
| 237 "src/debug/liveedit.js", | 235 "src/debug/liveedit.js", |
| 238 ] | 236 ] |
| 239 | 237 |
| 240 outputs = [ | 238 outputs = [ |
| 241 "$target_gen_dir/libraries.cc", | 239 "$target_gen_dir/libraries.cc", |
| 242 ] | 240 ] |
| 243 | 241 |
| (...skipping 1596 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1840 if (!is_component_build) { | 1838 if (!is_component_build) { |
| 1841 sources += [ | 1839 sources += [ |
| 1842 "$target_gen_dir/d8-js.cc", | 1840 "$target_gen_dir/d8-js.cc", |
| 1843 ] | 1841 ] |
| 1844 } | 1842 } |
| 1845 if (v8_enable_i18n_support) { | 1843 if (v8_enable_i18n_support) { |
| 1846 deps += [ "//third_party/icu" ] | 1844 deps += [ "//third_party/icu" ] |
| 1847 } | 1845 } |
| 1848 } | 1846 } |
| 1849 } | 1847 } |
| OLD | NEW |