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

Side by Side Diff: tools/gyp/v8.gyp

Issue 713223002: Abstract string building in JSON-stringifier into IncrementalStringBuilder. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 1 month 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 | « src/string-builder.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 770 matching lines...) Expand 10 before | Expand all | Expand 10 after
781 '../../src/runtime/runtime-regexp.cc', 781 '../../src/runtime/runtime-regexp.cc',
782 '../../src/runtime/runtime-scopes.cc', 782 '../../src/runtime/runtime-scopes.cc',
783 '../../src/runtime/runtime-strings.cc', 783 '../../src/runtime/runtime-strings.cc',
784 '../../src/runtime/runtime-symbol.cc', 784 '../../src/runtime/runtime-symbol.cc',
785 '../../src/runtime/runtime-test.cc', 785 '../../src/runtime/runtime-test.cc',
786 '../../src/runtime/runtime-typedarray.cc', 786 '../../src/runtime/runtime-typedarray.cc',
787 '../../src/runtime/runtime-uri.cc', 787 '../../src/runtime/runtime-uri.cc',
788 '../../src/runtime/runtime-utils.h', 788 '../../src/runtime/runtime-utils.h',
789 '../../src/runtime/runtime.cc', 789 '../../src/runtime/runtime.cc',
790 '../../src/runtime/runtime.h', 790 '../../src/runtime/runtime.h',
791 '../../src/runtime/string-builder.h',
792 '../../src/safepoint-table.cc', 791 '../../src/safepoint-table.cc',
793 '../../src/safepoint-table.h', 792 '../../src/safepoint-table.h',
794 '../../src/sampler.cc', 793 '../../src/sampler.cc',
795 '../../src/sampler.h', 794 '../../src/sampler.h',
796 '../../src/scanner-character-streams.cc', 795 '../../src/scanner-character-streams.cc',
797 '../../src/scanner-character-streams.h', 796 '../../src/scanner-character-streams.h',
798 '../../src/scanner.cc', 797 '../../src/scanner.cc',
799 '../../src/scanner.h', 798 '../../src/scanner.h',
800 '../../src/scopeinfo.cc', 799 '../../src/scopeinfo.cc',
801 '../../src/scopeinfo.h', 800 '../../src/scopeinfo.h',
802 '../../src/scopes.cc', 801 '../../src/scopes.cc',
803 '../../src/scopes.h', 802 '../../src/scopes.h',
804 '../../src/serialize.cc', 803 '../../src/serialize.cc',
805 '../../src/serialize.h', 804 '../../src/serialize.h',
806 '../../src/small-pointer-list.h', 805 '../../src/small-pointer-list.h',
807 '../../src/smart-pointers.h', 806 '../../src/smart-pointers.h',
808 '../../src/snapshot.h', 807 '../../src/snapshot.h',
809 '../../src/snapshot-source-sink.cc', 808 '../../src/snapshot-source-sink.cc',
810 '../../src/snapshot-source-sink.h', 809 '../../src/snapshot-source-sink.h',
810 '../../src/string-builder.h',
811 '../../src/string-builder.cc',
811 '../../src/string-search.cc', 812 '../../src/string-search.cc',
812 '../../src/string-search.h', 813 '../../src/string-search.h',
813 '../../src/string-stream.cc', 814 '../../src/string-stream.cc',
814 '../../src/string-stream.h', 815 '../../src/string-stream.h',
815 '../../src/strtod.cc', 816 '../../src/strtod.cc',
816 '../../src/strtod.h', 817 '../../src/strtod.h',
817 '../../src/ic/stub-cache.cc', 818 '../../src/ic/stub-cache.cc',
818 '../../src/ic/stub-cache.h', 819 '../../src/ic/stub-cache.h',
819 '../../src/token.cc', 820 '../../src/token.cc',
820 '../../src/token.h', 821 '../../src/token.h',
(...skipping 917 matching lines...) Expand 10 before | Expand all | Expand 10 after
1738 }], 1739 }],
1739 ['v8_compress_startup_data=="bz2"', { 1740 ['v8_compress_startup_data=="bz2"', {
1740 'libraries': [ 1741 'libraries': [
1741 '-lbz2', 1742 '-lbz2',
1742 ] 1743 ]
1743 }], 1744 }],
1744 ], 1745 ],
1745 }, 1746 },
1746 ], 1747 ],
1747 } 1748 }
OLDNEW
« no previous file with comments | « src/string-builder.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698