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

Side by Side Diff: DEPS

Issue 1522223002: Disable warnings failing when using Clang on Windows (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rolled winsdk_samples Created 5 years 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/libjingle_tests.gyp » ('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': '53970fd73572a0ca98a89820bb98b7ad3f583ca3', 9 'chromium_revision': '53970fd73572a0ca98a89820bb98b7ad3f583ca3',
10 } 10 }
11 11
12 # NOTE: Prefer revision numbers to tags for svn deps. Use http rather than 12 # NOTE: Prefer revision numbers to tags for svn deps. Use http rather than
13 # https; the latter can cause problems for users behind proxies. 13 # https; the latter can cause problems for users behind proxies.
14 deps = { 14 deps = {
15 # When rolling gflags, also update 15 # When rolling gflags, also update
16 # https://chromium.googlesource.com/chromium/deps/webrtc/webrtc.DEPS 16 # https://chromium.googlesource.com/chromium/deps/webrtc/webrtc.DEPS
17 'src/third_party/gflags/src': 17 'src/third_party/gflags/src':
18 Var('chromium_git') + '/external/gflags/src@e7390f9185c75f8d902c05ed7d20bb94 eb914d0c', # from svn revision 82 18 Var('chromium_git') + '/external/gflags/src@e7390f9185c75f8d902c05ed7d20bb94 eb914d0c', # from svn revision 82
19 19
20 'src/third_party/junit-jar': 20 'src/third_party/junit-jar':
21 Var('chromium_git') + '/external/webrtc/deps/third_party/junit@f35596b476aa6 e62fd3b3857b9942ddcd13ce35e', # from svn revision 3367 21 Var('chromium_git') + '/external/webrtc/deps/third_party/junit@f35596b476aa6 e62fd3b3857b9942ddcd13ce35e', # from svn revision 3367
22 } 22 }
23 23
24 deps_os = { 24 deps_os = {
25 'win': { 25 'win': {
26 'src/third_party/winsdk_samples/src': 26 'src/third_party/winsdk_samples/src':
27 Var('chromium_git') + '/external/webrtc/deps/third_party/winsdk_samples_v7 1@c0cbedd854cb610a53226d9817416c4ab9a7d1e9', # from svn revision 7951 27 Var('chromium_git') + '/external/webrtc/deps/third_party/winsdk_samples_v7 1@e71b549167a665d7424d6f1dadfbff4b4aad1589',
28 }, 28 },
29 } 29 }
30 30
31 # Define rules for which include paths are allowed in our source. 31 # Define rules for which include paths are allowed in our source.
32 include_rules = [ 32 include_rules = [
33 # Base is only used to build Android APK tests and may not be referenced by 33 # Base is only used to build Android APK tests and may not be referenced by
34 # WebRTC production code. 34 # WebRTC production code.
35 '-base', 35 '-base',
36 '-chromium', 36 '-chromium',
37 '+external/webrtc/webrtc', # Android platform build. 37 '+external/webrtc/webrtc', # Android platform build.
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 }, 107 },
108 { 108 {
109 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 109 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
110 'name': 'gyp', 110 'name': 'gyp',
111 'pattern': '.', 111 'pattern': '.',
112 'action': ['python', 'src/webrtc/build/gyp_webrtc', 112 'action': ['python', 'src/webrtc/build/gyp_webrtc',
113 Var('extra_gyp_flag')], 113 Var('extra_gyp_flag')],
114 }, 114 },
115 ] 115 ]
116 116
OLDNEW
« no previous file with comments | « no previous file | talk/libjingle_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698