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

Unified Diff: libvpx.gyp

Issue 139903014: Remove simple_* examples (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 11 months 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
===================================================================
--- libvpx.gyp (revision 247490)
+++ libvpx.gyp (working copy)
@@ -525,81 +525,5 @@
],
'includes': ['obj_int_extract.gypi'],
},
- {
- 'target_name': 'simple_encoder',
- 'type': 'executable',
- 'dependencies': [
- 'libvpx',
- ],
-
- # Copy the script to the output folder so that we can use it with
- # absolute path.
- 'copies': [{
- 'destination': '<(shared_generated_dir)/simple_encoder',
- 'files': [
- '<(libvpx_source)/examples/gen_example_code.sh',
- ],
- }],
-
- # Rule to convert .txt files to .c files.
- 'rules': [
- {
- 'rule_name': 'generate_example',
- 'extension': 'txt',
- 'inputs': [ '<(shared_generated_dir)/simple_encoder/gen_example_code.sh', ],
- 'outputs': [
- '<(shared_generated_dir)/<(RULE_INPUT_ROOT).c',
- ],
- 'action': [
- 'bash',
- '-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)',
- },
- ],
- 'sources': [
- '<(libvpx_source)/examples/simple_encoder.txt',
- ]
- },
- {
- 'target_name': 'simple_decoder',
- 'type': 'executable',
- 'dependencies': [
- 'libvpx',
- ],
-
- # Copy the script to the output folder so that we can use it with
- # absolute path.
- 'copies': [{
- 'destination': '<(shared_generated_dir)/simple_decoder',
- 'files': [
- '<(libvpx_source)/examples/gen_example_code.sh',
- ],
- }],
-
- # Rule to convert .txt files to .c files.
- 'rules': [
- {
- 'rule_name': 'generate_example',
- 'extension': 'txt',
- 'inputs': [ '<(shared_generated_dir)/simple_decoder/gen_example_code.sh', ],
- 'outputs': [
- '<(shared_generated_dir)/<(RULE_INPUT_ROOT).c',
- ],
- 'action': [
- 'bash',
- '-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)',
- },
- ],
- 'sources': [
- '<(libvpx_source)/examples/simple_decoder.txt',
- ]
- },
],
}
« 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