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

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

Issue 1904013002: [build] Fix build dependencies for embedded snapshot (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 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 ], 292 ],
293 'sources': [ 293 'sources': [
294 '../../src/snapshot/natives-external.cc', 294 '../../src/snapshot/natives-external.cc',
295 '../../src/snapshot/snapshot-external.cc', 295 '../../src/snapshot/snapshot-external.cc',
296 ], 296 ],
297 'actions': [ 297 'actions': [
298 { 298 {
299 'action_name': 'run_mksnapshot (external)', 299 'action_name': 'run_mksnapshot (external)',
300 'inputs': [ 300 'inputs': [
301 '<(mksnapshot_exec)', 301 '<(mksnapshot_exec)',
302 '<(embed_script)',
303 '<(warmup_script)',
302 ], 304 ],
303 'variables': { 305 'variables': {
304 'mksnapshot_flags': [], 306 'mksnapshot_flags': [],
305 'conditions': [ 307 'conditions': [
306 ['v8_random_seed!=0', { 308 ['v8_random_seed!=0', {
307 'mksnapshot_flags': ['--random-seed', '<(v8_random_seed)'], 309 'mksnapshot_flags': ['--random-seed', '<(v8_random_seed)'],
308 }], 310 }],
309 ['v8_vector_stores!=0', { 311 ['v8_vector_stores!=0', {
310 'mksnapshot_flags': ['--vector-stores'], 312 'mksnapshot_flags': ['--vector-stores'],
311 }], 313 }],
(...skipping 1904 matching lines...) Expand 10 before | Expand all | Expand 10 after
2216 }], 2218 }],
2217 ['want_separate_host_toolset==1', { 2219 ['want_separate_host_toolset==1', {
2218 'toolsets': ['host'], 2220 'toolsets': ['host'],
2219 }, { 2221 }, {
2220 'toolsets': ['target'], 2222 'toolsets': ['target'],
2221 }], 2223 }],
2222 ], 2224 ],
2223 }, 2225 },
2224 ], 2226 ],
2225 } 2227 }
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