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

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

Issue 1378253002: Move strings-storage.* to the profiler directory (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebaseline Created 5 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
« no previous file with comments | « src/strings-storage.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 872 matching lines...) Expand 10 before | Expand all | Expand 10 after
883 '../../src/profiler/heap-profiler.cc', 883 '../../src/profiler/heap-profiler.cc',
884 '../../src/profiler/heap-profiler.h', 884 '../../src/profiler/heap-profiler.h',
885 '../../src/profiler/heap-snapshot-generator-inl.h', 885 '../../src/profiler/heap-snapshot-generator-inl.h',
886 '../../src/profiler/heap-snapshot-generator.cc', 886 '../../src/profiler/heap-snapshot-generator.cc',
887 '../../src/profiler/heap-snapshot-generator.h', 887 '../../src/profiler/heap-snapshot-generator.h',
888 '../../src/profiler/profile-generator-inl.h', 888 '../../src/profiler/profile-generator-inl.h',
889 '../../src/profiler/profile-generator.cc', 889 '../../src/profiler/profile-generator.cc',
890 '../../src/profiler/profile-generator.h', 890 '../../src/profiler/profile-generator.h',
891 '../../src/profiler/sampler.cc', 891 '../../src/profiler/sampler.cc',
892 '../../src/profiler/sampler.h', 892 '../../src/profiler/sampler.h',
893 '../../src/profiler/strings-storage.cc',
894 '../../src/profiler/strings-storage.h',
893 '../../src/profiler/unbound-queue-inl.h', 895 '../../src/profiler/unbound-queue-inl.h',
894 '../../src/profiler/unbound-queue.h', 896 '../../src/profiler/unbound-queue.h',
895 '../../src/property-details.h', 897 '../../src/property-details.h',
896 '../../src/property.cc', 898 '../../src/property.cc',
897 '../../src/property.h', 899 '../../src/property.h',
898 '../../src/prototype.h', 900 '../../src/prototype.h',
899 '../../src/regexp/bytecodes-irregexp.h', 901 '../../src/regexp/bytecodes-irregexp.h',
900 '../../src/regexp/interpreter-irregexp.cc', 902 '../../src/regexp/interpreter-irregexp.cc',
901 '../../src/regexp/interpreter-irregexp.h', 903 '../../src/regexp/interpreter-irregexp.h',
902 '../../src/regexp/jsregexp-inl.h', 904 '../../src/regexp/jsregexp-inl.h',
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
972 '../../src/snapshot/snapshot-source-sink.h', 974 '../../src/snapshot/snapshot-source-sink.h',
973 '../../src/splay-tree.h', 975 '../../src/splay-tree.h',
974 '../../src/splay-tree-inl.h', 976 '../../src/splay-tree-inl.h',
975 '../../src/startup-data-util.cc', 977 '../../src/startup-data-util.cc',
976 '../../src/startup-data-util.h', 978 '../../src/startup-data-util.h',
977 '../../src/string-builder.cc', 979 '../../src/string-builder.cc',
978 '../../src/string-builder.h', 980 '../../src/string-builder.h',
979 '../../src/string-search.h', 981 '../../src/string-search.h',
980 '../../src/string-stream.cc', 982 '../../src/string-stream.cc',
981 '../../src/string-stream.h', 983 '../../src/string-stream.h',
982 '../../src/strings-storage.cc',
983 '../../src/strings-storage.h',
984 '../../src/strtod.cc', 984 '../../src/strtod.cc',
985 '../../src/strtod.h', 985 '../../src/strtod.h',
986 '../../src/ic/stub-cache.cc', 986 '../../src/ic/stub-cache.cc',
987 '../../src/ic/stub-cache.h', 987 '../../src/ic/stub-cache.h',
988 '../../src/token.cc', 988 '../../src/token.cc',
989 '../../src/token.h', 989 '../../src/token.h',
990 '../../src/transitions-inl.h', 990 '../../src/transitions-inl.h',
991 '../../src/transitions.cc', 991 '../../src/transitions.cc',
992 '../../src/transitions.h', 992 '../../src/transitions.h',
993 '../../src/type-feedback-vector-inl.h', 993 '../../src/type-feedback-vector-inl.h',
(...skipping 1094 matching lines...) Expand 10 before | Expand all | Expand 10 after
2088 }], 2088 }],
2089 ['want_separate_host_toolset==1', { 2089 ['want_separate_host_toolset==1', {
2090 'toolsets': ['host'], 2090 'toolsets': ['host'],
2091 }, { 2091 }, {
2092 'toolsets': ['target'], 2092 'toolsets': ['target'],
2093 }], 2093 }],
2094 ], 2094 ],
2095 }, 2095 },
2096 ], 2096 ],
2097 } 2097 }
OLDNEW
« no previous file with comments | « src/strings-storage.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698