| OLD | NEW | 
|    1 # This file is used to manage the dependencies of the Chromium src repo. It is |    1 # This file is used to manage the dependencies of the Chromium src repo. It is | 
|    2 # used by gclient to determine what version of each dependency to check out, and |    2 # used by gclient to determine what version of each dependency to check out, and | 
|    3 # where. |    3 # where. | 
|    4 # |    4 # | 
|    5 # For more information, please refer to the official documentation: |    5 # For more information, please refer to the official documentation: | 
|    6 #   https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code |    6 #   https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code | 
|    7 # |    7 # | 
|    8 # When adding a new dependency, please update the top-level .gitignore file |    8 # When adding a new dependency, please update the top-level .gitignore file | 
|    9 # to list the dependency's destination directory. |    9 # to list the dependency's destination directory. | 
|   10 # |   10 # | 
| (...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  585     'name': 'lastchange', |  585     'name': 'lastchange', | 
|  586     'pattern': '.', |  586     'pattern': '.', | 
|  587     'action': ['python', 'src/build/util/lastchange.py', |  587     'action': ['python', 'src/build/util/lastchange.py', | 
|  588                '-o', 'src/build/util/LASTCHANGE'], |  588                '-o', 'src/build/util/LASTCHANGE'], | 
|  589   }, |  589   }, | 
|  590   { |  590   { | 
|  591     # Update LASTCHANGE.blink. |  591     # Update LASTCHANGE.blink. | 
|  592     'name': 'lastchange', |  592     'name': 'lastchange', | 
|  593     'pattern': '.', |  593     'pattern': '.', | 
|  594     'action': ['python', 'src/build/util/lastchange.py', |  594     'action': ['python', 'src/build/util/lastchange.py', | 
 |  595                '--git-hash-only', | 
|  595                '-s', 'src/third_party/WebKit', |  596                '-s', 'src/third_party/WebKit', | 
|  596                '-o', 'src/build/util/LASTCHANGE.blink'], |  597                '-o', 'src/build/util/LASTCHANGE.blink'], | 
|  597   }, |  598   }, | 
|  598   { |  599   { | 
|  599     # Update CANARY_VERSION. |  600     # Update CANARY_VERSION. | 
|  600     'name': 'ios_canary_version', |  601     'name': 'ios_canary_version', | 
|  601     'pattern': '.', |  602     'pattern': '.', | 
|  602     'action': ['python', 'src/ios/build/util/canary_version.py', |  603     'action': ['python', 'src/ios/build/util/canary_version.py', | 
|  603                '-o', 'src/ios/build/util/CANARY_VERSION'], |  604                '-o', 'src/ios/build/util/CANARY_VERSION'], | 
|  604   }, |  605   }, | 
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  802     # migration completes (let's say Sep 1 2014). |  803     # migration completes (let's say Sep 1 2014). | 
|  803     'name': 'check_git_config', |  804     'name': 'check_git_config', | 
|  804     'pattern': '.', |  805     'pattern': '.', | 
|  805     'action': [ |  806     'action': [ | 
|  806         'python', |  807         'python', | 
|  807         'src/tools/check_git_config.py', |  808         'src/tools/check_git_config.py', | 
|  808         '--running-as-hook', |  809         '--running-as-hook', | 
|  809     ], |  810     ], | 
|  810   }, |  811   }, | 
|  811 ] |  812 ] | 
| OLD | NEW |