| 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': 'c089d37d656ebb4bb19570c769cd184b1e7e4e73', | 9 'chromium_revision': '159828fc541faca44767e090cdc44545545f6155', |
| 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 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 }, | 92 }, |
| 93 { | 93 { |
| 94 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 94 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 95 'name': 'gyp', | 95 'name': 'gyp', |
| 96 'pattern': '.', | 96 'pattern': '.', |
| 97 'action': ['python', 'src/webrtc/build/gyp_webrtc', | 97 'action': ['python', 'src/webrtc/build/gyp_webrtc', |
| 98 Var('extra_gyp_flag')], | 98 Var('extra_gyp_flag')], |
| 99 }, | 99 }, |
| 100 ] | 100 ] |
| 101 | 101 |
| OLD | NEW |