aboutsummaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
authormachenbach@chromium.org <machenbach@chromium.org>2014-10-01 00:05:35 +0000
committermachenbach@chromium.org <machenbach@chromium.org>2014-10-01 00:05:35 +0000
commit096d76564bb962c70bd1f4381a8ed4ae15a4a8c4 (patch)
tree619027e6abb746638d09afaac770e1ed48489756 /BUILD.gn
parentfa58d1246ea273db14242977396a6bccd3a921d0 (diff)
downloadv8-096d76564bb962c70bd1f4381a8ed4ae15a4a8c4.tar.gz
Version 3.30.1 (based on bleeding_edge revision r24337)
Introduce PromiseRejectCallback (issue 3093). ES6: Implement object literal property shorthand (issue 3584). Performance and stability improvements on all platforms. git-svn-id: https://v8.googlecode.com/svn/trunk@24341 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn14
1 files changed, 14 insertions, 0 deletions
diff --git a/BUILD.gn b/BUILD.gn
index bfe44395f..b366c1577 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -520,6 +520,7 @@ source_set("v8_base") {
"src/compiler/js-graph.h",
"src/compiler/js-inlining.cc",
"src/compiler/js-inlining.h",
+ "src/compiler/js-operator.cc",
"src/compiler/js-operator.h",
"src/compiler/js-typed-lowering.cc",
"src/compiler/js-typed-lowering.h",
@@ -536,6 +537,7 @@ source_set("v8_base") {
"src/compiler/node-aux-data.h",
"src/compiler/node-cache.cc",
"src/compiler/node-cache.h",
+ "src/compiler/node-matchers.cc",
"src/compiler/node-matchers.h",
"src/compiler/node-properties-inl.h",
"src/compiler/node-properties.h",
@@ -827,11 +829,21 @@ source_set("v8_base") {
"src/runtime/runtime-collections.cc",
"src/runtime/runtime-compiler.cc",
"src/runtime/runtime-i18n.cc",
+ "src/runtime/runtime-date.cc",
+ "src/runtime/runtime-debug.cc",
+ "src/runtime/runtime-function.cc",
+ "src/runtime/runtime-generator.cc",
"src/runtime/runtime-json.cc",
+ "src/runtime/runtime-literals.cc",
+ "src/runtime/runtime-liveedit.cc",
"src/runtime/runtime-maths.cc",
"src/runtime/runtime-numbers.cc",
+ "src/runtime/runtime-observe.cc",
+ "src/runtime/runtime-proxy.cc",
"src/runtime/runtime-regexp.cc",
+ "src/runtime/runtime-scopes.cc",
"src/runtime/runtime-strings.cc",
+ "src/runtime/runtime-symbol.cc",
"src/runtime/runtime-test.cc",
"src/runtime/runtime-typedarray.cc",
"src/runtime/runtime-uri.cc",
@@ -939,6 +951,8 @@ source_set("v8_base") {
"src/compiler/ia32/instruction-codes-ia32.h",
"src/compiler/ia32/instruction-selector-ia32.cc",
"src/compiler/ia32/linkage-ia32.cc",
+ "src/ic/ia32/access-compiler-ia32.cc",
+ "src/ic/ia32/handler-compiler-ia32.cc",
"src/ic/ia32/ic-ia32.cc",
"src/ic/ia32/ic-compiler-ia32.cc",
"src/ic/ia32/stub-cache-ia32.cc",