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

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

Issue 791723004: Reland "Use same blob format for internal and external snapshots." (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix Created 6 years 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
« src/snapshot-external.cc ('K') | « test/cctest/test-serialize.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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 'dependencies': [ 157 'dependencies': [
158 'v8_base', 158 'v8_base',
159 ], 159 ],
160 'include_dirs+': [ 160 'include_dirs+': [
161 '../..', 161 '../..',
162 ], 162 ],
163 'sources': [ 163 'sources': [
164 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc', 164 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc',
165 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc', 165 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc',
166 '<(INTERMEDIATE_DIR)/snapshot.cc', 166 '<(INTERMEDIATE_DIR)/snapshot.cc',
167 '../../src/snapshot-common.cc',
168 ], 167 ],
169 'actions': [ 168 'actions': [
170 { 169 {
171 'action_name': 'run_mksnapshot', 170 'action_name': 'run_mksnapshot',
172 'inputs': [ 171 'inputs': [
173 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mksnapshot<(EXECUTABLE_SUFFIX)', 172 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mksnapshot<(EXECUTABLE_SUFFIX)',
174 ], 173 ],
175 'outputs': [ 174 'outputs': [
176 '<(INTERMEDIATE_DIR)/snapshot.cc', 175 '<(INTERMEDIATE_DIR)/snapshot.cc',
177 ], 176 ],
(...skipping 21 matching lines...) Expand all
199 'type': 'static_library', 198 'type': 'static_library',
200 'dependencies': [ 199 'dependencies': [
201 'v8_base', 200 'v8_base',
202 ], 201 ],
203 'include_dirs+': [ 202 'include_dirs+': [
204 '../..', 203 '../..',
205 ], 204 ],
206 'sources': [ 205 'sources': [
207 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc', 206 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc',
208 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc', 207 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc',
209 '../../src/snapshot-common.cc',
210 '../../src/snapshot-empty.cc', 208 '../../src/snapshot-empty.cc',
211 ], 209 ],
212 'conditions': [ 210 'conditions': [
213 ['want_separate_host_toolset==1', { 211 ['want_separate_host_toolset==1', {
214 'toolsets': ['host', 'target'], 212 'toolsets': ['host', 'target'],
215 'dependencies': ['js2c#host'], 213 'dependencies': ['js2c#host'],
216 }, { 214 }, {
217 'toolsets': ['target'], 215 'toolsets': ['target'],
218 'dependencies': ['js2c'], 216 'dependencies': ['js2c'],
219 }], 217 }],
(...skipping 597 matching lines...) Expand 10 before | Expand all | Expand 10 after
817 '../../src/scanner.h', 815 '../../src/scanner.h',
818 '../../src/scopeinfo.cc', 816 '../../src/scopeinfo.cc',
819 '../../src/scopeinfo.h', 817 '../../src/scopeinfo.h',
820 '../../src/scopes.cc', 818 '../../src/scopes.cc',
821 '../../src/scopes.h', 819 '../../src/scopes.h',
822 '../../src/serialize.cc', 820 '../../src/serialize.cc',
823 '../../src/serialize.h', 821 '../../src/serialize.h',
824 '../../src/small-pointer-list.h', 822 '../../src/small-pointer-list.h',
825 '../../src/smart-pointers.h', 823 '../../src/smart-pointers.h',
826 '../../src/snapshot.h', 824 '../../src/snapshot.h',
825 '../../src/snapshot-common.cc',
827 '../../src/snapshot-source-sink.cc', 826 '../../src/snapshot-source-sink.cc',
828 '../../src/snapshot-source-sink.h', 827 '../../src/snapshot-source-sink.h',
829 '../../src/string-builder.cc', 828 '../../src/string-builder.cc',
830 '../../src/string-builder.h', 829 '../../src/string-builder.h',
831 '../../src/string-search.cc', 830 '../../src/string-search.cc',
832 '../../src/string-search.h', 831 '../../src/string-search.h',
833 '../../src/string-stream.cc', 832 '../../src/string-stream.cc',
834 '../../src/string-stream.h', 833 '../../src/string-stream.h',
835 '../../src/strtod.cc', 834 '../../src/strtod.cc',
836 '../../src/strtod.h', 835 '../../src/strtod.h',
(...skipping 907 matching lines...) Expand 10 before | Expand all | Expand 10 after
1744 }], 1743 }],
1745 ['want_separate_host_toolset==1', { 1744 ['want_separate_host_toolset==1', {
1746 'toolsets': ['host'], 1745 'toolsets': ['host'],
1747 }, { 1746 }, {
1748 'toolsets': ['target'], 1747 'toolsets': ['target'],
1749 }], 1748 }],
1750 ], 1749 ],
1751 }, 1750 },
1752 ], 1751 ],
1753 } 1752 }
OLDNEW
« src/snapshot-external.cc ('K') | « test/cctest/test-serialize.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698