| 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 | 8 |
| 9 # Because standalone V8 builds are not supported, assume this is part of a | 9 # Because standalone V8 builds are not supported, assume this is part of a |
| 10 # Chromium build. | 10 # Chromium build. |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 "src/weak-collection.js", | 223 "src/weak-collection.js", |
| 224 "src/collection-iterator.js", | 224 "src/collection-iterator.js", |
| 225 "src/promise.js", | 225 "src/promise.js", |
| 226 "src/messages.js", | 226 "src/messages.js", |
| 227 "src/json.js", | 227 "src/json.js", |
| 228 "src/array-iterator.js", | 228 "src/array-iterator.js", |
| 229 "src/string-iterator.js", | 229 "src/string-iterator.js", |
| 230 "src/templates.js", | 230 "src/templates.js", |
| 231 "src/harmony-array.js", | 231 "src/harmony-array.js", |
| 232 "src/harmony-typedarray.js", | 232 "src/harmony-typedarray.js", |
| 233 "src/debug/mirrors.js", |
| 233 "src/debug/debug.js", | 234 "src/debug/debug.js", |
| 234 "src/debug/mirrors.js", | |
| 235 "src/debug/liveedit.js", | 235 "src/debug/liveedit.js", |
| 236 ] | 236 ] |
| 237 | 237 |
| 238 outputs = [ | 238 outputs = [ |
| 239 "$target_gen_dir/libraries.cc", | 239 "$target_gen_dir/libraries.cc", |
| 240 ] | 240 ] |
| 241 | 241 |
| 242 if (v8_enable_i18n_support) { | 242 if (v8_enable_i18n_support) { |
| 243 sources += [ "src/i18n.js" ] | 243 sources += [ "src/i18n.js" ] |
| 244 } | 244 } |
| (...skipping 1528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1773 if (!is_component_build) { | 1773 if (!is_component_build) { |
| 1774 sources += [ | 1774 sources += [ |
| 1775 "$target_gen_dir/d8-js.cc", | 1775 "$target_gen_dir/d8-js.cc", |
| 1776 ] | 1776 ] |
| 1777 } | 1777 } |
| 1778 if (v8_enable_i18n_support) { | 1778 if (v8_enable_i18n_support) { |
| 1779 deps += [ "//third_party/icu" ] | 1779 deps += [ "//third_party/icu" ] |
| 1780 } | 1780 } |
| 1781 } | 1781 } |
| 1782 } | 1782 } |
| OLD | NEW |