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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 # the commit queue can handle CLs rolling ANGLE | 65 # the commit queue can handle CLs rolling ANGLE |
66 # and whatever else without interference from each other. | 66 # and whatever else without interference from each other. |
67 'angle_revision': '9e0478f62fbc2f24d4ec233ef655d50b9dc0b812', | 67 'angle_revision': '9e0478f62fbc2f24d4ec233ef655d50b9dc0b812', |
68 # Three lines of non-changing comments so that | 68 # Three lines of non-changing comments so that |
69 # the commit queue can handle CLs rolling build tools | 69 # the commit queue can handle CLs rolling build tools |
70 # and whatever else without interference from each other. | 70 # and whatever else without interference from each other. |
71 'buildtools_revision': '451dcd05a5b34936f5be67b2472cd63aaa508401', | 71 'buildtools_revision': '451dcd05a5b34936f5be67b2472cd63aaa508401', |
72 # Three lines of non-changing comments so that | 72 # Three lines of non-changing comments so that |
73 # the commit queue can handle CLs rolling PDFium | 73 # the commit queue can handle CLs rolling PDFium |
74 # and whatever else without interference from each other. | 74 # and whatever else without interference from each other. |
75 'pdfium_revision': 'aa7b4ede03764a5701a477b601720a32c88d8e42', | 75 'pdfium_revision': 'eef005055d6aafc2cc6066af37ce47d8b15ec7cd', |
76 # Three lines of non-changing comments so that | 76 # Three lines of non-changing comments so that |
77 # the commit queue can handle CLs rolling openmax_dl | 77 # the commit queue can handle CLs rolling openmax_dl |
78 # and whatever else without interference from each other. | 78 # and whatever else without interference from each other. |
79 'openmax_dl_revision': 'c01d587de2dfe12458f44074d07f51857c16508e', | 79 'openmax_dl_revision': 'c01d587de2dfe12458f44074d07f51857c16508e', |
80 # Three lines of non-changing comments so that | 80 # Three lines of non-changing comments so that |
81 # the commit queue can handle CLs rolling BoringSSL | 81 # the commit queue can handle CLs rolling BoringSSL |
82 # and whatever else without interference from each other. | 82 # and whatever else without interference from each other. |
83 'boringssl_revision': '347f025d752980f62757f3f01321c4ec970ba94c', | 83 'boringssl_revision': '347f025d752980f62757f3f01321c4ec970ba94c', |
84 # Three lines of non-changing comments so that | 84 # Three lines of non-changing comments so that |
85 # the commit queue can handle CLs rolling nss | 85 # the commit queue can handle CLs rolling nss |
(...skipping 697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
783 # corresponding .py files have already been deleted. | 783 # corresponding .py files have already been deleted. |
784 'name': 'remove_stale_pyc_files', | 784 'name': 'remove_stale_pyc_files', |
785 'pattern': 'src/tools/.*\\.py', | 785 'pattern': 'src/tools/.*\\.py', |
786 'action': [ | 786 'action': [ |
787 'python', | 787 'python', |
788 'src/tools/remove_stale_pyc_files.py', | 788 'src/tools/remove_stale_pyc_files.py', |
789 'src/tools', | 789 'src/tools', |
790 ], | 790 ], |
791 }, | 791 }, |
792 ] | 792 ] |
OLD | NEW |