linux: Add strip binary action.

This commit is contained in:
Cheng Zhao 2014-03-03 12:55:04 +08:00
parent de21a164ea
commit b8e75df8f0

View file

@ -544,6 +544,21 @@
'--jobs=16', '--jobs=16',
], ],
}, },
{
'action_name': 'Strip Binary',
'inputs': [
'<(PRODUCT_DIR)/libchromiumcontent.so',
'<(PRODUCT_DIR)/libffmpegsumo.so',
'<(PRODUCT_DIR)/<(project_name)',
],
'outputs': [
'<(PRODUCT_DIR)/dummy_file',
],
'action': [
'strip',
'<@(_inputs)'
],
},
], ],
}], # OS=="linux" }], # OS=="linux"
], ],