src: rename macros.py to notrace_macros.py

This incarnation of macros.py is only used to disable the (d)trace
macros. Rename it so it better reflects its purpose. A new macros.py
will be added in a follow-up commit.
This commit is contained in:
Ben Noordhuis 2013-07-24 12:53:28 +02:00
parent d8240769c6
commit 4b279f0092
2 changed files with 8 additions and 9 deletions

View File

@ -378,19 +378,18 @@
' and node_use_etw=="false"' ' and node_use_etw=="false"'
' and node_use_systemtap=="false"', ' and node_use_systemtap=="false"',
{ {
'inputs': ['src/macros.py'] 'inputs': ['src/notrace_macros.py']
} }],
],
[ 'node_use_perfctr=="false"', { [ 'node_use_perfctr=="false"', {
'inputs': [ 'src/perfctr_macros.py' ] 'inputs': [ 'src/perfctr_macros.py' ]
}] }]
], ],
'action': [ 'action': [
'<(python)', '<(python)',
'tools/js2c.py', 'tools/js2c.py',
'<@(_outputs)', '<@(_outputs)',
'<@(_inputs)', '<@(_inputs)',
], ],
}, },
], ],
}, # end node_js2c }, # end node_js2c