| 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': '3a90ecfeb74acfc47de7df8b531ef30aa743f296', | 9 'chromium_revision': '3a90ecfeb74acfc47de7df8b531ef30aa743f296', |
| 10 } | 10 } |
| 11 | 11 |
| 12 # NOTE: Prefer revision numbers to tags for svn deps. Use http rather than | 12 # NOTE: Use http rather than https; the latter can cause problems for users |
| 13 # https; the latter can cause problems for users behind proxies. | 13 # behind proxies. |
| 14 deps = { | 14 deps = { |
| 15 # When rolling gflags, also update | |
| 16 # https://chromium.googlesource.com/chromium/deps/webrtc/webrtc.DEPS | |
| 17 'src/third_party/gflags/src': | 15 'src/third_party/gflags/src': |
| 18 Var('chromium_git') + '/external/gflags/src@e7390f9185c75f8d902c05ed7d20bb94
eb914d0c', # from svn revision 82 | 16 Var('chromium_git') + '/external/github.com/gflags/gflags@03bebcb065c83beff8
3d50ae025a55a4bf94dfca', |
| 19 } | 17 } |
| 20 | 18 |
| 21 deps_os = { | 19 deps_os = { |
| 22 'win': { | 20 'win': { |
| 23 'src/third_party/winsdk_samples/src': | 21 'src/third_party/winsdk_samples/src': |
| 24 Var('chromium_git') + '/external/webrtc/deps/third_party/winsdk_samples_v7
1@e71b549167a665d7424d6f1dadfbff4b4aad1589', | 22 Var('chromium_git') + '/external/webrtc/deps/third_party/winsdk_samples_v7
1@e71b549167a665d7424d6f1dadfbff4b4aad1589', |
| 25 }, | 23 }, |
| 26 } | 24 } |
| 27 | 25 |
| 28 # Define rules for which include paths are allowed in our source. | 26 # Define rules for which include paths are allowed in our source. |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 }, | 104 }, |
| 107 { | 105 { |
| 108 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 106 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 109 'name': 'gyp', | 107 'name': 'gyp', |
| 110 'pattern': '.', | 108 'pattern': '.', |
| 111 'action': ['python', 'src/webrtc/build/gyp_webrtc', | 109 'action': ['python', 'src/webrtc/build/gyp_webrtc', |
| 112 Var('extra_gyp_flag')], | 110 Var('extra_gyp_flag')], |
| 113 }, | 111 }, |
| 114 ] | 112 ] |
| 115 | 113 |
| OLD | NEW |