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

Side by Side Diff: DEPS

Issue 1895713002: Move logic of gyp_webrtc into gyp_webrtc.py (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix PyLint warning Created 4 years, 8 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 unified diff | Download patch
« no previous file with comments | « no previous file | talk/app/webrtc/objc/README » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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': 'e3afee6b62380b5b09caf7513701f66d8964c6b6', 9 'chromium_revision': 'e3afee6b62380b5b09caf7513701f66d8964c6b6',
10 } 10 }
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 '--num_threads=10', 80 '--num_threads=10',
81 '--no_auth', 81 '--no_auth',
82 '--quiet', 82 '--quiet',
83 '--bucket', 'chromium-webrtc-resources', 83 '--bucket', 'chromium-webrtc-resources',
84 'src/resources'], 84 'src/resources'],
85 }, 85 },
86 { 86 {
87 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 87 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
88 'name': 'gyp', 88 'name': 'gyp',
89 'pattern': '.', 89 'pattern': '.',
90 'action': ['python', 'src/webrtc/build/gyp_webrtc', 90 'action': ['python', 'src/webrtc/build/gyp_webrtc.py',
91 Var('extra_gyp_flag')], 91 Var('extra_gyp_flag')],
92 }, 92 },
93 ] 93 ]
94 94
OLDNEW
« no previous file with comments | « no previous file | talk/app/webrtc/objc/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698