Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Side by Side Diff: BUILD.gn

Issue 895053002: Move the contents of api-natives.js to c++ (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | include/v8.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 # Because standalone V8 builds are not supported, assume this is part of a 5 # Because standalone V8 builds are not supported, assume this is part of a
6 # Chromium build. 6 # Chromium build.
7 import("//build/module_args/v8.gni") 7 import("//build/module_args/v8.gni")
8 8
9 # TODO(jochen): These will need to be user-settable to support standalone V8 9 # TODO(jochen): These will need to be user-settable to support standalone V8
10 # builds. 10 # builds.
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 168
169 sources = [ 169 sources = [
170 "src/runtime.js", 170 "src/runtime.js",
171 "src/v8natives.js", 171 "src/v8natives.js",
172 "src/symbol.js", 172 "src/symbol.js",
173 "src/array.js", 173 "src/array.js",
174 "src/string.js", 174 "src/string.js",
175 "src/uri.js", 175 "src/uri.js",
176 "src/third_party/fdlibm/fdlibm.js", 176 "src/third_party/fdlibm/fdlibm.js",
177 "src/math.js", 177 "src/math.js",
178 "src/apinatives.js",
179 "src/date.js", 178 "src/date.js",
180 "src/regexp.js", 179 "src/regexp.js",
181 "src/arraybuffer.js", 180 "src/arraybuffer.js",
182 "src/typedarray.js", 181 "src/typedarray.js",
183 "src/generator.js", 182 "src/generator.js",
184 "src/object-observe.js", 183 "src/object-observe.js",
185 "src/collection.js", 184 "src/collection.js",
186 "src/weak-collection.js", 185 "src/weak-collection.js",
187 "src/collection-iterator.js", 186 "src/collection-iterator.js",
188 "src/promise.js", 187 "src/promise.js",
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
446 "src/accessors.cc", 445 "src/accessors.cc",
447 "src/accessors.h", 446 "src/accessors.h",
448 "src/allocation.cc", 447 "src/allocation.cc",
449 "src/allocation.h", 448 "src/allocation.h",
450 "src/allocation-site-scopes.cc", 449 "src/allocation-site-scopes.cc",
451 "src/allocation-site-scopes.h", 450 "src/allocation-site-scopes.h",
452 "src/allocation-tracker.cc", 451 "src/allocation-tracker.cc",
453 "src/allocation-tracker.h", 452 "src/allocation-tracker.h",
454 "src/api.cc", 453 "src/api.cc",
455 "src/api.h", 454 "src/api.h",
455 "src/api-natives.cc",
456 "src/api-natives.h",
456 "src/arguments.cc", 457 "src/arguments.cc",
457 "src/arguments.h", 458 "src/arguments.h",
458 "src/assembler.cc", 459 "src/assembler.cc",
459 "src/assembler.h", 460 "src/assembler.h",
460 "src/assert-scope.h", 461 "src/assert-scope.h",
461 "src/assert-scope.cc", 462 "src/assert-scope.cc",
462 "src/ast-numbering.cc", 463 "src/ast-numbering.cc",
463 "src/ast-numbering.h", 464 "src/ast-numbering.h",
464 "src/ast-this-access-visitor.cc", 465 "src/ast-this-access-visitor.cc",
465 "src/ast-this-access-visitor.h", 466 "src/ast-this-access-visitor.h",
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after
883 "src/regexp-macro-assembler-tracer.cc", 884 "src/regexp-macro-assembler-tracer.cc",
884 "src/regexp-macro-assembler-tracer.h", 885 "src/regexp-macro-assembler-tracer.h",
885 "src/regexp-macro-assembler.cc", 886 "src/regexp-macro-assembler.cc",
886 "src/regexp-macro-assembler.h", 887 "src/regexp-macro-assembler.h",
887 "src/regexp-stack.cc", 888 "src/regexp-stack.cc",
888 "src/regexp-stack.h", 889 "src/regexp-stack.h",
889 "src/rewriter.cc", 890 "src/rewriter.cc",
890 "src/rewriter.h", 891 "src/rewriter.h",
891 "src/runtime-profiler.cc", 892 "src/runtime-profiler.cc",
892 "src/runtime-profiler.h", 893 "src/runtime-profiler.h",
893 "src/runtime/runtime-api.cc",
894 "src/runtime/runtime-array.cc", 894 "src/runtime/runtime-array.cc",
895 "src/runtime/runtime-classes.cc", 895 "src/runtime/runtime-classes.cc",
896 "src/runtime/runtime-collections.cc", 896 "src/runtime/runtime-collections.cc",
897 "src/runtime/runtime-compiler.cc", 897 "src/runtime/runtime-compiler.cc",
898 "src/runtime/runtime-date.cc", 898 "src/runtime/runtime-date.cc",
899 "src/runtime/runtime-debug.cc", 899 "src/runtime/runtime-debug.cc",
900 "src/runtime/runtime-function.cc", 900 "src/runtime/runtime-function.cc",
901 "src/runtime/runtime-generator.cc", 901 "src/runtime/runtime-generator.cc",
902 "src/runtime/runtime-i18n.cc", 902 "src/runtime/runtime-i18n.cc",
903 "src/runtime/runtime-internal.cc", 903 "src/runtime/runtime-internal.cc",
(...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after
1554 sources += [ 1554 sources += [
1555 "src/d8-debug.cc", 1555 "src/d8-debug.cc",
1556 "$target_gen_dir/d8-js.cc", 1556 "$target_gen_dir/d8-js.cc",
1557 ] 1557 ]
1558 } 1558 }
1559 if (v8_enable_i18n_support) { 1559 if (v8_enable_i18n_support) {
1560 deps += [ "//third_party/icu" ] 1560 deps += [ "//third_party/icu" ]
1561 } 1561 }
1562 } 1562 }
1563 } 1563 }
OLDNEW
« no previous file with comments | « no previous file | include/v8.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698