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

Unified 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, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/v8.gyp
diff --git a/src/v8.gyp b/src/v8.gyp
index c0781cb1d9f9c412b88414f74f2ec64407213f65..2b9f9e0cd6a408175d303b57cacb416e74782cb0 100644
--- a/src/v8.gyp
+++ b/src/v8.gyp
@@ -398,15 +398,6 @@
'outputs': ['<(INTERMEDIATE_DIR)/bytecode-peephole-table.cc'],
'action': ['<(mkpeephole_exec)', '<(INTERMEDIATE_DIR)/bytecode-peephole-table.cc' ],
'process_outputs_as_sources': 1,
- 'conditions': [
- ['want_separate_host_toolset_mkpeephole==1', {
- 'dependencies': ['mkpeephole#host'],
- 'toolsets': ['host'],
- }, {
- 'dependencies': ['mkpeephole'],
- 'toolsets': ['target'],
- }],
- ],
}],
'sources': [ ### gcmole(all) ###
'../include/v8-debug.h',
@@ -1268,6 +1259,13 @@
}, {
'toolsets': ['target'],
}],
+ ['want_separate_host_toolset_mkpeephole==1', {
+ 'toolsets': ['host', 'target'],
+ 'dependencies': ['mkpeephole#host'],
+ }, {
+ 'toolsets': ['target'],
+ 'dependencies': ['mkpeephole'],
+ }],
['v8_target_arch=="arm"', {
'sources': [ ### gcmole(arch:arm) ###
'arm/assembler-arm-inl.h',
« 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