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

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..352afe548d157513156d64da5974c8185a37c95a 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)/encoder',
Alpha Left Google 2011/11/08 15:19:53 Please rename this to simple_encoder.
tzik 2011/11/08 15:34:37 Done.
'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)/encoder/gen_example_code.sh', ],
Alpha Left Google 2011/11/08 15:19:53 same there.
tzik 2011/11/08 15:34:37 Done.
'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)/encoder/gen_example_code.sh <(RULE_INPUT_PATH) > <(shared_generated_dir)/<(RULE_INPUT_ROOT).c',
Alpha Left Google 2011/11/08 15:19:53 same as above.
tzik 2011/11/08 15:34:37 Done.
],
'process_outputs_as_sources': 1,
'message': 'Generate libvpx example code <(RULE_INPUT_PATH).',
@@ -213,7 +213,7 @@
'copies': [{
'destination': '<(shared_generated_dir)',
'files': [
- 'source/libvpx/examples/gen_example_code.sh',
+ 'source/libvpx/examples/decoder/gen_example_code.sh',
Alpha Left Google 2011/11/08 15:19:53 Please rename this to simple_decoder.
tzik 2011/11/08 15:34:37 Done. I misplaced directory name.
],
}],
@@ -222,14 +222,14 @@
{
'rule_name': 'generate_example',
'extension': 'txt',
- 'inputs': [ '<(shared_generated_dir)/gen_example_code.sh', ],
+ 'inputs': [ '<(shared_generated_dir)/decoder/gen_example_code.sh', ],
Alpha Left Google 2011/11/08 15:19:53 Also this please.
tzik 2011/11/08 15:34:37 Done.
'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)/decoder/gen_example_code.sh <(RULE_INPUT_PATH) > <(shared_generated_dir)/<(RULE_INPUT_ROOT).c',
Alpha Left Google 2011/11/08 15:19:53 And this please.
tzik 2011/11/08 15:34:37 Done.
],
'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