| 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': '7711cbb94f0c6c01b288491100cb899c96be3bb6', | 9   'chromium_revision': '3d9805722d2a7fd45ff5d1138c2fb2936f3e9de3', | 
| 10 } | 10 } | 
| 11 | 11 | 
| 12 # NOTE: Use http rather than https; the latter can cause problems for users | 12 # NOTE: Use http rather than https; the latter can cause problems for users | 
| 13 # behind proxies. | 13 # behind proxies. | 
| 14 deps = { | 14 deps = { | 
| 15   'src/third_party/gflags/src': | 15   'src/third_party/gflags/src': | 
| 16     Var('chromium_git') + '/external/github.com/gflags/gflags@03bebcb065c83beff8
    3d50ae025a55a4bf94dfca', | 16     Var('chromium_git') + '/external/github.com/gflags/gflags@03bebcb065c83beff8
    3d50ae025a55a4bf94dfca', | 
| 17 } | 17 } | 
| 18 | 18 | 
| 19 deps_os = { | 19 deps_os = { | 
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 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.py', | 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 | 
| OLD | NEW | 
|---|