| OLD | NEW |
| 1 # This file contains dependencies for WebRTC that are not shared with Chromium. | 1 # This file contains dependencies for WebRTC that are not shared with Chromium. |
| 2 # If you wish to add a dependency that is present in Chromium's src/DEPS or a | 2 # If you wish to add a dependency that is present in Chromium's src/DEPS or a |
| 3 # directory from the Chromium checkout, you should add it to setup_links.py | 3 # directory from the Chromium checkout, you should add it to setup_links.py |
| 4 # instead. | 4 # instead. |
| 5 | 5 |
| 6 vars = { | 6 vars = { |
| 7 'extra_gyp_flag': '-Dextra_gyp_flag=0', | 7 'extra_gyp_flag': '-Dextra_gyp_flag=0', |
| 8 'chromium_git': 'https://chromium.googlesource.com', | 8 'chromium_git': 'https://chromium.googlesource.com', |
| 9 'chromium_revision': '53970fd73572a0ca98a89820bb98b7ad3f583ca3', | 9 'chromium_revision': '53970fd73572a0ca98a89820bb98b7ad3f583ca3', |
| 10 } | 10 } |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downlo
ad_binaries.py'], | 95 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downlo
ad_binaries.py'], |
| 96 }, | 96 }, |
| 97 { | 97 { |
| 98 # Download test resources, i.e. video and audio files from Google Storage. | 98 # Download test resources, i.e. video and audio files from Google Storage. |
| 99 'pattern': '.', | 99 'pattern': '.', |
| 100 'action': ['download_from_google_storage', | 100 'action': ['download_from_google_storage', |
| 101 '--directory', | 101 '--directory', |
| 102 '--recursive', | 102 '--recursive', |
| 103 '--num_threads=10', | 103 '--num_threads=10', |
| 104 '--no_auth', | 104 '--no_auth', |
| 105 '--quiet', |
| 105 '--bucket', 'chromium-webrtc-resources', | 106 '--bucket', 'chromium-webrtc-resources', |
| 106 'src/resources'], | 107 'src/resources'], |
| 107 }, | 108 }, |
| 108 { | 109 { |
| 109 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 110 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 110 'name': 'gyp', | 111 'name': 'gyp', |
| 111 'pattern': '.', | 112 'pattern': '.', |
| 112 'action': ['python', 'src/webrtc/build/gyp_webrtc', | 113 'action': ['python', 'src/webrtc/build/gyp_webrtc', |
| 113 Var('extra_gyp_flag')], | 114 Var('extra_gyp_flag')], |
| 114 }, | 115 }, |
| 115 ] | 116 ] |
| 116 | 117 |
| OLD | NEW |