Chromium Code Reviews| 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).', |