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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 | 262 |
263 # The script depends on this other script, this rule causes a rebuild if it | 263 # The script depends on this other script, this rule causes a rebuild if it |
264 # changes. | 264 # changes. |
265 inputs = [ "tools/jsmin.py" ] | 265 inputs = [ "tools/jsmin.py" ] |
266 | 266 |
267 sources = [ | 267 sources = [ |
268 "src/macros.py", | 268 "src/macros.py", |
269 "src/messages.h", | 269 "src/messages.h", |
270 "src/proxy.js", | 270 "src/proxy.js", |
271 "src/generator.js", | 271 "src/generator.js", |
| 272 "src/harmony-atomics.js", |
272 "src/harmony-array.js", | 273 "src/harmony-array.js", |
273 "src/harmony-array-includes.js", | 274 "src/harmony-array-includes.js", |
274 "src/harmony-typedarray.js", | 275 "src/harmony-typedarray.js", |
275 "src/harmony-tostring.js", | 276 "src/harmony-tostring.js", |
276 "src/harmony-regexp.js", | 277 "src/harmony-regexp.js", |
277 "src/harmony-reflect.js", | 278 "src/harmony-reflect.js", |
278 "src/harmony-spread.js", | 279 "src/harmony-spread.js", |
279 "src/harmony-object.js", | 280 "src/harmony-object.js", |
280 "src/harmony-sharedarraybuffer.js" | 281 "src/harmony-sharedarraybuffer.js" |
281 ] | 282 ] |
(...skipping 713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
995 "src/regexp-macro-assembler-tracer.h", | 996 "src/regexp-macro-assembler-tracer.h", |
996 "src/regexp-macro-assembler.cc", | 997 "src/regexp-macro-assembler.cc", |
997 "src/regexp-macro-assembler.h", | 998 "src/regexp-macro-assembler.h", |
998 "src/regexp-stack.cc", | 999 "src/regexp-stack.cc", |
999 "src/regexp-stack.h", | 1000 "src/regexp-stack.h", |
1000 "src/rewriter.cc", | 1001 "src/rewriter.cc", |
1001 "src/rewriter.h", | 1002 "src/rewriter.h", |
1002 "src/runtime-profiler.cc", | 1003 "src/runtime-profiler.cc", |
1003 "src/runtime-profiler.h", | 1004 "src/runtime-profiler.h", |
1004 "src/runtime/runtime-array.cc", | 1005 "src/runtime/runtime-array.cc", |
| 1006 "src/runtime/runtime-atomics.cc", |
1005 "src/runtime/runtime-classes.cc", | 1007 "src/runtime/runtime-classes.cc", |
1006 "src/runtime/runtime-collections.cc", | 1008 "src/runtime/runtime-collections.cc", |
1007 "src/runtime/runtime-compiler.cc", | 1009 "src/runtime/runtime-compiler.cc", |
1008 "src/runtime/runtime-date.cc", | 1010 "src/runtime/runtime-date.cc", |
1009 "src/runtime/runtime-debug.cc", | 1011 "src/runtime/runtime-debug.cc", |
1010 "src/runtime/runtime-function.cc", | 1012 "src/runtime/runtime-function.cc", |
1011 "src/runtime/runtime-generator.cc", | 1013 "src/runtime/runtime-generator.cc", |
1012 "src/runtime/runtime-i18n.cc", | 1014 "src/runtime/runtime-i18n.cc", |
1013 "src/runtime/runtime-internal.cc", | 1015 "src/runtime/runtime-internal.cc", |
1014 "src/runtime/runtime-json.cc", | 1016 "src/runtime/runtime-json.cc", |
(...skipping 662 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1677 sources += [ | 1679 sources += [ |
1678 "src/d8-debug.cc", | 1680 "src/d8-debug.cc", |
1679 "$target_gen_dir/d8-js.cc", | 1681 "$target_gen_dir/d8-js.cc", |
1680 ] | 1682 ] |
1681 } | 1683 } |
1682 if (v8_enable_i18n_support) { | 1684 if (v8_enable_i18n_support) { |
1683 deps += [ "//third_party/icu" ] | 1685 deps += [ "//third_party/icu" ] |
1684 } | 1686 } |
1685 } | 1687 } |
1686 } | 1688 } |
OLD | NEW |