| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 # the commit queue can handle CLs rolling lighttpd | 75 # the commit queue can handle CLs rolling lighttpd |
| 76 # and whatever else without interference from each other. | 76 # and whatever else without interference from each other. |
| 77 'lighttpd_revision': '9dfa55d15937a688a92cbf2b7a8621b0927d06eb', | 77 'lighttpd_revision': '9dfa55d15937a688a92cbf2b7a8621b0927d06eb', |
| 78 # Three lines of non-changing comments so that | 78 # Three lines of non-changing comments so that |
| 79 # the commit queue can handle CLs rolling lss | 79 # the commit queue can handle CLs rolling lss |
| 80 # and whatever else without interference from each other. | 80 # and whatever else without interference from each other. |
| 81 'lss_revision': '6f97298fe3794e92c8c896a6bc06e0b36e4c3de3', | 81 'lss_revision': '6f97298fe3794e92c8c896a6bc06e0b36e4c3de3', |
| 82 # Three lines of non-changing comments so that | 82 # Three lines of non-changing comments so that |
| 83 # the commit queue can handle CLs rolling NaCl | 83 # the commit queue can handle CLs rolling NaCl |
| 84 # and whatever else without interference from each other. | 84 # and whatever else without interference from each other. |
| 85 'nacl_revision': '8191c1a953ca5896c715cb21e7a24d8c092f925f', | 85 'nacl_revision': '66c300e071cf3e1c1fb98f9a3e15bb02b4388d72', |
| 86 } | 86 } |
| 87 | 87 |
| 88 # Only these hosts are allowed for dependencies in this DEPS file. | 88 # Only these hosts are allowed for dependencies in this DEPS file. |
| 89 # If you need to add a new host, contact chrome infrastracture team. | 89 # If you need to add a new host, contact chrome infrastracture team. |
| 90 allowed_hosts = [ | 90 allowed_hosts = [ |
| 91 'chromium.googlesource.com', | 91 'chromium.googlesource.com', |
| 92 'boringssl.googlesource.com', | 92 'boringssl.googlesource.com', |
| 93 'pdfium.googlesource.com', | 93 'pdfium.googlesource.com', |
| 94 'android.googlesource.com', | 94 'android.googlesource.com', |
| 95 ] | 95 ] |
| (...skipping 691 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 787 # migration completes (let's say Sep 1 2014). | 787 # migration completes (let's say Sep 1 2014). |
| 788 'name': 'check_git_config', | 788 'name': 'check_git_config', |
| 789 'pattern': '.', | 789 'pattern': '.', |
| 790 'action': [ | 790 'action': [ |
| 791 'python', | 791 'python', |
| 792 'src/tools/check_git_config.py', | 792 'src/tools/check_git_config.py', |
| 793 '--running-as-hook', | 793 '--running-as-hook', |
| 794 ], | 794 ], |
| 795 }, | 795 }, |
| 796 ] | 796 ] |
| OLD | NEW |