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

Unified Diff: libvpx.gyp

Issue 8501011: Suppress libvpx warning (Closed) Base URL: http://git.chromium.org/chromium/deps/libvpx.git@master
Patch Set: '' Created 9 years, 1 month 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: libvpx.gyp
diff --git a/libvpx.gyp b/libvpx.gyp
index c82c41f07d6616f94300de983ef50a51f9601214..9fce1083420f278ee02b8ae6251a9471c0df6911 100644
--- a/libvpx.gyp
+++ b/libvpx.gyp
@@ -167,7 +167,7 @@
# Copy the script to the output folder so that we can use it with
# absolute path.
'copies': [{
- 'destination': '<(shared_generated_dir)',
+ 'destination': '<(shared_generated_dir)/simple_encoder',
'files': [
'source/libvpx/examples/gen_example_code.sh',
],
@@ -178,14 +178,14 @@
{
'rule_name': 'generate_example',
'extension': 'txt',
- 'inputs': [ '<(shared_generated_dir)/gen_example_code.sh', ],
+ 'inputs': [ '<(shared_generated_dir)/simple_encoder/gen_example_code.sh', ],
'outputs': [
'<(shared_generated_dir)/<(RULE_INPUT_ROOT).c',
],
'action': [
'bash',
'-c',
- '<(shared_generated_dir)/gen_example_code.sh <(RULE_INPUT_PATH) > <(shared_generated_dir)/<(RULE_INPUT_ROOT).c',
+ '<(shared_generated_dir)/simple_encoder/gen_example_code.sh <(RULE_INPUT_PATH) > <(shared_generated_dir)/<(RULE_INPUT_ROOT).c',
],
'process_outputs_as_sources': 1,
'message': 'Generate libvpx example code <(RULE_INPUT_PATH).',
@@ -211,7 +211,7 @@
# Copy the script to the output folder so that we can use it with
# absolute path.
'copies': [{
- 'destination': '<(shared_generated_dir)',
+ 'destination': '<(shared_generated_dir)/simple_decoder',
'files': [
'source/libvpx/examples/gen_example_code.sh',
],
@@ -222,14 +222,14 @@
{
'rule_name': 'generate_example',
'extension': 'txt',
- 'inputs': [ '<(shared_generated_dir)/gen_example_code.sh', ],
+ 'inputs': [ '<(shared_generated_dir)/simple_decoder/gen_example_code.sh', ],
'outputs': [
'<(shared_generated_dir)/<(RULE_INPUT_ROOT).c',
],
'action': [
'bash',
'-c',
- '<(shared_generated_dir)/gen_example_code.sh <(RULE_INPUT_PATH) > <(shared_generated_dir)/<(RULE_INPUT_ROOT).c',
+ '<(shared_generated_dir)/simple_decoder/gen_example_code.sh <(RULE_INPUT_PATH) > <(shared_generated_dir)/<(RULE_INPUT_ROOT).c',
],
'process_outputs_as_sources': 1,
'message': 'Generate libvpx example code <(RULE_INPUT_PATH).',
« 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