Fix generate_asm_header.

In gyp, "inputs" always takes path relative to the gyp file.
The path in "action" is absolute since it can be included from a different directory.
Review URL: https://webrtc-codereview.appspot.com/965026

git-svn-id: http://webrtc.googlecode.com/svn/trunk@3100 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
wjia@webrtc.org 2012-11-15 00:13:07 +00:00
parent 50419b0777
commit aea2510b8d

View File

@ -30,7 +30,6 @@
# TODO(kma): port this block from Android into other build systems.
{
'variables': {
'gen_header': '<(DEPTH)/webrtc/build/generate_asm_header.py',
'out_dir': '<(SHARED_INTERMEDIATE_DIR)/<(asm_header_dir)',
'process_outputs_as_sources': 1,
},
@ -39,14 +38,14 @@
'rule_name': 'generate_asm_header',
'extension': 'c',
'inputs': [
'<(gen_header)',
'generate_asm_header.py',
],
'outputs': [
'<(out_dir)/<(RULE_INPUT_ROOT).h',
],
'action': [
'python',
'<(gen_header)',
'<(webrtc_root)/build/generate_asm_header.py',
'--compiler=<!(/bin/echo -n ${ANDROID_GOMA_WRAPPER} '
'<(android_toolchain)/*-gcc)',
'--options=-I.. -I<@(android_ndk_include) -S', # Compiler options.