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

Side by Side Diff: BUILD.gn

Issue 638423003: Split off remaining runtime functions in runtime.cc. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | src/macros.py » ('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 # TODO(jochen): These will need to be user-settable to support standalone V8 5 # TODO(jochen): These will need to be user-settable to support standalone V8
6 # builds. 6 # builds.
7 v8_compress_startup_data = "off" 7 v8_compress_startup_data = "off"
8 v8_deprecation_warnings = false 8 v8_deprecation_warnings = false
9 v8_enable_disassembler = false 9 v8_enable_disassembler = false
10 v8_enable_gdbjit = false 10 v8_enable_gdbjit = false
(...skipping 806 matching lines...) Expand 10 before | Expand all | Expand 10 after
817 "src/regexp-macro-assembler-tracer.cc", 817 "src/regexp-macro-assembler-tracer.cc",
818 "src/regexp-macro-assembler-tracer.h", 818 "src/regexp-macro-assembler-tracer.h",
819 "src/regexp-macro-assembler.cc", 819 "src/regexp-macro-assembler.cc",
820 "src/regexp-macro-assembler.h", 820 "src/regexp-macro-assembler.h",
821 "src/regexp-stack.cc", 821 "src/regexp-stack.cc",
822 "src/regexp-stack.h", 822 "src/regexp-stack.h",
823 "src/rewriter.cc", 823 "src/rewriter.cc",
824 "src/rewriter.h", 824 "src/rewriter.h",
825 "src/runtime-profiler.cc", 825 "src/runtime-profiler.cc",
826 "src/runtime-profiler.h", 826 "src/runtime-profiler.h",
827 "src/runtime/runtime-api.cc",
828 "src/runtime/runtime-array.cc",
827 "src/runtime/runtime-classes.cc", 829 "src/runtime/runtime-classes.cc",
828 "src/runtime/runtime-collections.cc", 830 "src/runtime/runtime-collections.cc",
829 "src/runtime/runtime-compiler.cc", 831 "src/runtime/runtime-compiler.cc",
830 "src/runtime/runtime-i18n.cc",
831 "src/runtime/runtime-date.cc", 832 "src/runtime/runtime-date.cc",
832 "src/runtime/runtime-debug.cc", 833 "src/runtime/runtime-debug.cc",
833 "src/runtime/runtime-function.cc", 834 "src/runtime/runtime-function.cc",
834 "src/runtime/runtime-generator.cc", 835 "src/runtime/runtime-generator.cc",
836 "src/runtime/runtime-i18n.cc",
837 "src/runtime/runtime-internal.cc",
835 "src/runtime/runtime-json.cc", 838 "src/runtime/runtime-json.cc",
836 "src/runtime/runtime-literals.cc", 839 "src/runtime/runtime-literals.cc",
837 "src/runtime/runtime-liveedit.cc", 840 "src/runtime/runtime-liveedit.cc",
838 "src/runtime/runtime-maths.cc", 841 "src/runtime/runtime-maths.cc",
839 "src/runtime/runtime-numbers.cc", 842 "src/runtime/runtime-numbers.cc",
843 "src/runtime/runtime-object.cc",
840 "src/runtime/runtime-observe.cc", 844 "src/runtime/runtime-observe.cc",
841 "src/runtime/runtime-proxy.cc", 845 "src/runtime/runtime-proxy.cc",
842 "src/runtime/runtime-regexp.cc", 846 "src/runtime/runtime-regexp.cc",
843 "src/runtime/runtime-scopes.cc", 847 "src/runtime/runtime-scopes.cc",
844 "src/runtime/runtime-strings.cc", 848 "src/runtime/runtime-strings.cc",
845 "src/runtime/runtime-symbol.cc", 849 "src/runtime/runtime-symbol.cc",
846 "src/runtime/runtime-test.cc", 850 "src/runtime/runtime-test.cc",
847 "src/runtime/runtime-typedarray.cc", 851 "src/runtime/runtime-typedarray.cc",
848 "src/runtime/runtime-uri.cc", 852 "src/runtime/runtime-uri.cc",
849 "src/runtime/runtime-utils.h", 853 "src/runtime/runtime-utils.h",
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after
1426 deps = [ 1430 deps = [
1427 ":v8_base", 1431 ":v8_base",
1428 ":v8_nosnapshot", 1432 ":v8_nosnapshot",
1429 ] 1433 ]
1430 } 1434 }
1431 1435
1432 direct_dependent_configs = [ ":external_config" ] 1436 direct_dependent_configs = [ ":external_config" ]
1433 } 1437 }
1434 1438
1435 } 1439 }
OLDNEW
« no previous file with comments | « no previous file | src/macros.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698