| 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 if (is_android) { | 10 if (is_android) { |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 "src/messages.h", | 215 "src/messages.h", |
| 216 "src/js/prologue.js", | 216 "src/js/prologue.js", |
| 217 "src/js/runtime.js", | 217 "src/js/runtime.js", |
| 218 "src/js/v8natives.js", | 218 "src/js/v8natives.js", |
| 219 "src/js/symbol.js", | 219 "src/js/symbol.js", |
| 220 "src/js/array.js", | 220 "src/js/array.js", |
| 221 "src/js/string.js", | 221 "src/js/string.js", |
| 222 "src/js/uri.js", | 222 "src/js/uri.js", |
| 223 "src/js/math.js", | 223 "src/js/math.js", |
| 224 "src/third_party/fdlibm/fdlibm.js", | 224 "src/third_party/fdlibm/fdlibm.js", |
| 225 "src/js/date.js", |
| 225 "src/js/regexp.js", | 226 "src/js/regexp.js", |
| 226 "src/js/arraybuffer.js", | 227 "src/js/arraybuffer.js", |
| 227 "src/js/typedarray.js", | 228 "src/js/typedarray.js", |
| 228 "src/js/iterator-prototype.js", | 229 "src/js/iterator-prototype.js", |
| 229 "src/js/generator.js", | 230 "src/js/generator.js", |
| 230 "src/js/object-observe.js", | 231 "src/js/object-observe.js", |
| 231 "src/js/collection.js", | 232 "src/js/collection.js", |
| 232 "src/js/weak-collection.js", | 233 "src/js/weak-collection.js", |
| 233 "src/js/collection-iterator.js", | 234 "src/js/collection-iterator.js", |
| 234 "src/js/promise.js", | 235 "src/js/promise.js", |
| (...skipping 1650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1885 if (!is_component_build) { | 1886 if (!is_component_build) { |
| 1886 sources += [ | 1887 sources += [ |
| 1887 "$target_gen_dir/d8-js.cc", | 1888 "$target_gen_dir/d8-js.cc", |
| 1888 ] | 1889 ] |
| 1889 } | 1890 } |
| 1890 if (v8_enable_i18n_support) { | 1891 if (v8_enable_i18n_support) { |
| 1891 deps += [ "//third_party/icu" ] | 1892 deps += [ "//third_party/icu" ] |
| 1892 } | 1893 } |
| 1893 } | 1894 } |
| 1894 } | 1895 } |
| OLD | NEW |