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

Side by Side Diff: BUILD.gn

Issue 463523002: Move store-buffer to heap and remove some unnecessary includes. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 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/assembler.cc » ('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 628 matching lines...) Expand 10 before | Expand all | Expand 10 after
639 "src/heap/incremental-marking.h", 639 "src/heap/incremental-marking.h",
640 "src/heap/mark-compact-inl.h", 640 "src/heap/mark-compact-inl.h",
641 "src/heap/mark-compact.cc", 641 "src/heap/mark-compact.cc",
642 "src/heap/mark-compact.h", 642 "src/heap/mark-compact.h",
643 "src/heap/objects-visiting-inl.h", 643 "src/heap/objects-visiting-inl.h",
644 "src/heap/objects-visiting.cc", 644 "src/heap/objects-visiting.cc",
645 "src/heap/objects-visiting.h", 645 "src/heap/objects-visiting.h",
646 "src/heap/spaces-inl.h", 646 "src/heap/spaces-inl.h",
647 "src/heap/spaces.cc", 647 "src/heap/spaces.cc",
648 "src/heap/spaces.h", 648 "src/heap/spaces.h",
649 "src/heap/store-buffer-inl.h",
650 "src/heap/store-buffer.cc",
651 "src/heap/store-buffer.h",
649 "src/heap/sweeper-thread.h", 652 "src/heap/sweeper-thread.h",
650 "src/heap/sweeper-thread.cc", 653 "src/heap/sweeper-thread.cc",
651 "src/hydrogen-alias-analysis.h", 654 "src/hydrogen-alias-analysis.h",
652 "src/hydrogen-bce.cc", 655 "src/hydrogen-bce.cc",
653 "src/hydrogen-bce.h", 656 "src/hydrogen-bce.h",
654 "src/hydrogen-bch.cc", 657 "src/hydrogen-bch.cc",
655 "src/hydrogen-bch.h", 658 "src/hydrogen-bch.h",
656 "src/hydrogen-canonicalize.cc", 659 "src/hydrogen-canonicalize.cc",
657 "src/hydrogen-canonicalize.h", 660 "src/hydrogen-canonicalize.h",
658 "src/hydrogen-check-elimination.cc", 661 "src/hydrogen-check-elimination.cc",
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
796 "src/scopeinfo.h", 799 "src/scopeinfo.h",
797 "src/scopes.cc", 800 "src/scopes.cc",
798 "src/scopes.h", 801 "src/scopes.h",
799 "src/serialize.cc", 802 "src/serialize.cc",
800 "src/serialize.h", 803 "src/serialize.h",
801 "src/small-pointer-list.h", 804 "src/small-pointer-list.h",
802 "src/smart-pointers.h", 805 "src/smart-pointers.h",
803 "src/snapshot-source-sink.cc", 806 "src/snapshot-source-sink.cc",
804 "src/snapshot-source-sink.h", 807 "src/snapshot-source-sink.h",
805 "src/snapshot.h", 808 "src/snapshot.h",
806 "src/store-buffer-inl.h",
807 "src/store-buffer.cc",
808 "src/store-buffer.h",
809 "src/string-search.cc", 809 "src/string-search.cc",
810 "src/string-search.h", 810 "src/string-search.h",
811 "src/string-stream.cc", 811 "src/string-stream.cc",
812 "src/string-stream.h", 812 "src/string-stream.h",
813 "src/strtod.cc", 813 "src/strtod.cc",
814 "src/strtod.h", 814 "src/strtod.h",
815 "src/stub-cache.cc", 815 "src/stub-cache.cc",
816 "src/stub-cache.h", 816 "src/stub-cache.h",
817 "src/token.cc", 817 "src/token.cc",
818 "src/token.h", 818 "src/token.h",
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after
1272 deps = [ 1272 deps = [
1273 ":v8_base", 1273 ":v8_base",
1274 ":v8_nosnapshot", 1274 ":v8_nosnapshot",
1275 ] 1275 ]
1276 } 1276 }
1277 1277
1278 direct_dependent_configs = [ ":external_config" ] 1278 direct_dependent_configs = [ ":external_config" ]
1279 } 1279 }
1280 1280
1281 } 1281 }
OLDNEW
« no previous file with comments | « no previous file | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698