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

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

Issue 1869453002: Fix Gyp rule that broke node.js build after snapshot log removal. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 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 | « no previous file | 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 'action_name': 'run_mksnapshot', 204 'action_name': 'run_mksnapshot',
205 'inputs': [ 205 'inputs': [
206 '<(mksnapshot_exec)', 206 '<(mksnapshot_exec)',
207 '<(embed_script)', 207 '<(embed_script)',
208 '<(warmup_script)', 208 '<(warmup_script)',
209 ], 209 ],
210 'outputs': [ 210 'outputs': [
211 '<(INTERMEDIATE_DIR)/snapshot.cc', 211 '<(INTERMEDIATE_DIR)/snapshot.cc',
212 ], 212 ],
213 'variables': { 213 'variables': {
214 'mksnapshot_flags': [],
214 'conditions': [ 215 'conditions': [
215 ['v8_random_seed!=0', { 216 ['v8_random_seed!=0', {
216 'mksnapshot_flags': ['--random-seed', '<(v8_random_seed)'], 217 'mksnapshot_flags': ['--random-seed', '<(v8_random_seed)'],
217 }], 218 }],
218 ['v8_vector_stores!=0', { 219 ['v8_vector_stores!=0', {
219 'mksnapshot_flags': ['--vector-stores'], 220 'mksnapshot_flags': ['--vector-stores'],
220 }], 221 }],
221 ], 222 ],
222 }, 223 },
223 'action': [ 224 'action': [
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 ], 364 ],
364 'sources': [ 365 'sources': [
365 '../../src/snapshot/natives-external.cc', 366 '../../src/snapshot/natives-external.cc',
366 '../../src/snapshot/snapshot-external.cc', 367 '../../src/snapshot/snapshot-external.cc',
367 ], 368 ],
368 'actions': [ 369 'actions': [
369 { 370 {
370 'action_name': 'run_mksnapshot (external)', 371 'action_name': 'run_mksnapshot (external)',
371 'inputs': ['<(mksnapshot_exec)'], 372 'inputs': ['<(mksnapshot_exec)'],
372 'variables': { 373 'variables': {
374 'mksnapshot_flags': [],
373 'conditions': [ 375 'conditions': [
374 ['v8_random_seed!=0', { 376 ['v8_random_seed!=0', {
375 'mksnapshot_flags': ['--random-seed', '<(v8_random_seed)'], 377 'mksnapshot_flags': ['--random-seed', '<(v8_random_seed)'],
376 }], 378 }],
377 ['v8_vector_stores!=0', { 379 ['v8_vector_stores!=0', {
378 'mksnapshot_flags': ['--vector-stores'], 380 'mksnapshot_flags': ['--vector-stores'],
379 }], 381 }],
380 ], 382 ],
381 }, 383 },
382 'conditions': [ 384 'conditions': [
(...skipping 1887 matching lines...) Expand 10 before | Expand all | Expand 10 after
2270 }], 2272 }],
2271 ['want_separate_host_toolset==1', { 2273 ['want_separate_host_toolset==1', {
2272 'toolsets': ['host'], 2274 'toolsets': ['host'],
2273 }, { 2275 }, {
2274 'toolsets': ['target'], 2276 'toolsets': ['target'],
2275 }], 2277 }],
2276 ], 2278 ],
2277 }, 2279 },
2278 ], 2280 ],
2279 } 2281 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698