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

Side by Side Diff: src/v8.gyp

Issue 2276733002: v8.gyp: fix mkpeephole on Windows for Node.js (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 3 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 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 '..', 391 '..',
392 '<(DEPTH)', 392 '<(DEPTH)',
393 '<(SHARED_INTERMEDIATE_DIR)' 393 '<(SHARED_INTERMEDIATE_DIR)'
394 ], 394 ],
395 'actions':[{ 395 'actions':[{
396 'action_name': 'run mkpeephole', 396 'action_name': 'run mkpeephole',
397 'inputs': ['<(mkpeephole_exec)'], 397 'inputs': ['<(mkpeephole_exec)'],
398 'outputs': ['<(INTERMEDIATE_DIR)/bytecode-peephole-table.cc'], 398 'outputs': ['<(INTERMEDIATE_DIR)/bytecode-peephole-table.cc'],
399 'action': ['<(mkpeephole_exec)', '<(INTERMEDIATE_DIR)/bytecode-peephole- table.cc' ], 399 'action': ['<(mkpeephole_exec)', '<(INTERMEDIATE_DIR)/bytecode-peephole- table.cc' ],
400 'process_outputs_as_sources': 1, 400 'process_outputs_as_sources': 1,
401 'conditions': [
402 ['want_separate_host_toolset_mkpeephole==1', {
403 'dependencies': ['mkpeephole#host'],
404 'toolsets': ['host'],
405 }, {
406 'dependencies': ['mkpeephole'],
407 'toolsets': ['target'],
408 }],
409 ],
410 }], 401 }],
411 'sources': [ ### gcmole(all) ### 402 'sources': [ ### gcmole(all) ###
412 '../include/v8-debug.h', 403 '../include/v8-debug.h',
413 '../include/v8-experimental.h', 404 '../include/v8-experimental.h',
414 '../include/v8-platform.h', 405 '../include/v8-platform.h',
415 '../include/v8-profiler.h', 406 '../include/v8-profiler.h',
416 '../include/v8-testing.h', 407 '../include/v8-testing.h',
417 '../include/v8-util.h', 408 '../include/v8-util.h',
418 '../include/v8-version.h', 409 '../include/v8-version.h',
419 '../include/v8.h', 410 '../include/v8.h',
(...skipping 841 matching lines...) Expand 10 before | Expand all | Expand 10 after
1261 'zone.h', 1252 'zone.h',
1262 'zone-allocator.h', 1253 'zone-allocator.h',
1263 'zone-containers.h', 1254 'zone-containers.h',
1264 ], 1255 ],
1265 'conditions': [ 1256 'conditions': [
1266 ['want_separate_host_toolset==1', { 1257 ['want_separate_host_toolset==1', {
1267 'toolsets': ['host', 'target'], 1258 'toolsets': ['host', 'target'],
1268 }, { 1259 }, {
1269 'toolsets': ['target'], 1260 'toolsets': ['target'],
1270 }], 1261 }],
1262 ['want_separate_host_toolset_mkpeephole==1', {
1263 'toolsets': ['host', 'target'],
1264 'dependencies': ['mkpeephole#host'],
1265 }, {
1266 'toolsets': ['target'],
1267 'dependencies': ['mkpeephole'],
1268 }],
1271 ['v8_target_arch=="arm"', { 1269 ['v8_target_arch=="arm"', {
1272 'sources': [ ### gcmole(arch:arm) ### 1270 'sources': [ ### gcmole(arch:arm) ###
1273 'arm/assembler-arm-inl.h', 1271 'arm/assembler-arm-inl.h',
1274 'arm/assembler-arm.cc', 1272 'arm/assembler-arm.cc',
1275 'arm/assembler-arm.h', 1273 'arm/assembler-arm.h',
1276 'arm/code-stubs-arm.cc', 1274 'arm/code-stubs-arm.cc',
1277 'arm/code-stubs-arm.h', 1275 'arm/code-stubs-arm.h',
1278 'arm/codegen-arm.cc', 1276 'arm/codegen-arm.cc',
1279 'arm/codegen-arm.h', 1277 'arm/codegen-arm.h',
1280 'arm/constants-arm.h', 1278 'arm/constants-arm.h',
(...skipping 1102 matching lines...) Expand 10 before | Expand all | Expand 10 after
2383 'conditions': [ 2381 'conditions': [
2384 ['want_separate_host_toolset_mkpeephole==1', { 2382 ['want_separate_host_toolset_mkpeephole==1', {
2385 'toolsets': ['host'], 2383 'toolsets': ['host'],
2386 }, { 2384 }, {
2387 'toolsets': ['target'], 2385 'toolsets': ['target'],
2388 }], 2386 }],
2389 ], 2387 ],
2390 }, 2388 },
2391 ], 2389 ],
2392 } 2390 }
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