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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 "src/weak-collection.js", | 214 "src/weak-collection.js", |
215 "src/collection-iterator.js", | 215 "src/collection-iterator.js", |
216 "src/promise.js", | 216 "src/promise.js", |
217 "src/messages.js", | 217 "src/messages.js", |
218 "src/json.js", | 218 "src/json.js", |
219 "src/array-iterator.js", | 219 "src/array-iterator.js", |
220 "src/string-iterator.js", | 220 "src/string-iterator.js", |
221 "src/debug-debugger.js", | 221 "src/debug-debugger.js", |
222 "src/mirror-debugger.js", | 222 "src/mirror-debugger.js", |
223 "src/liveedit-debugger.js", | 223 "src/liveedit-debugger.js", |
| 224 "src/templates.js", |
224 "src/macros.py", | 225 "src/macros.py", |
225 ] | 226 ] |
226 | 227 |
227 outputs = [ | 228 outputs = [ |
228 "$target_gen_dir/libraries.cc", | 229 "$target_gen_dir/libraries.cc", |
229 ] | 230 ] |
230 | 231 |
231 if (v8_enable_i18n_support) { | 232 if (v8_enable_i18n_support) { |
232 sources += [ "src/i18n.js" ] | 233 sources += [ "src/i18n.js" ] |
233 } | 234 } |
(...skipping 22 matching lines...) Expand all Loading... |
256 inputs = [ "tools/jsmin.py" ] | 257 inputs = [ "tools/jsmin.py" ] |
257 | 258 |
258 sources = [ | 259 sources = [ |
259 "src/macros.py", | 260 "src/macros.py", |
260 "src/proxy.js", | 261 "src/proxy.js", |
261 "src/generator.js", | 262 "src/generator.js", |
262 "src/harmony-array.js", | 263 "src/harmony-array.js", |
263 "src/harmony-array-includes.js", | 264 "src/harmony-array-includes.js", |
264 "src/harmony-typedarray.js", | 265 "src/harmony-typedarray.js", |
265 "src/harmony-tostring.js", | 266 "src/harmony-tostring.js", |
266 "src/harmony-templates.js", | |
267 "src/harmony-regexp.js", | 267 "src/harmony-regexp.js", |
268 "src/harmony-reflect.js" | 268 "src/harmony-reflect.js" |
269 ] | 269 ] |
270 | 270 |
271 outputs = [ | 271 outputs = [ |
272 "$target_gen_dir/experimental-libraries.cc", | 272 "$target_gen_dir/experimental-libraries.cc", |
273 ] | 273 ] |
274 | 274 |
275 args = [ | 275 args = [ |
276 rebase_path("$target_gen_dir/experimental-libraries.cc", | 276 rebase_path("$target_gen_dir/experimental-libraries.cc", |
(...skipping 1313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1590 sources += [ | 1590 sources += [ |
1591 "src/d8-debug.cc", | 1591 "src/d8-debug.cc", |
1592 "$target_gen_dir/d8-js.cc", | 1592 "$target_gen_dir/d8-js.cc", |
1593 ] | 1593 ] |
1594 } | 1594 } |
1595 if (v8_enable_i18n_support) { | 1595 if (v8_enable_i18n_support) { |
1596 deps += [ "//third_party/icu" ] | 1596 deps += [ "//third_party/icu" ] |
1597 } | 1597 } |
1598 } | 1598 } |
1599 } | 1599 } |
OLD | NEW |