| OLD | NEW |
| 1 # This file is automatically processed to create .DEPS.git which is the file | 1 # This file is automatically processed to create .DEPS.git which is the file |
| 2 # that gclient uses under git. | 2 # that gclient uses under git. |
| 3 # | 3 # |
| 4 # See http://code.google.com/p/chromium/wiki/UsingGit | 4 # See http://code.google.com/p/chromium/wiki/UsingGit |
| 5 # | 5 # |
| 6 # To test manually, run: | 6 # To test manually, run: |
| 7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir> | 7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir> |
| 8 # where <gcliendir> is the absolute path to the directory containing the | 8 # where <gcliendir> is the absolute path to the directory containing the |
| 9 # .gclient file (the parent of 'src'). | 9 # .gclient file (the parent of 'src'). |
| 10 # | 10 # |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 'src/third_party/WebKit': | 117 'src/third_party/WebKit': |
| 118 Var('chromium_git') + '/chromium/blink.git' + '@' + Var('webkit_revision'), | 118 Var('chromium_git') + '/chromium/blink.git' + '@' + Var('webkit_revision'), |
| 119 | 119 |
| 120 'src/third_party/WebKit/LayoutTests/w3c/web-platform-tests': | 120 'src/third_party/WebKit/LayoutTests/w3c/web-platform-tests': |
| 121 Var('chromium_git') + '/external/w3c/web-platform-tests.git' + '@' + '3e0f283
76857901b2d3eefda82a3b622bbcabd41', | 121 Var('chromium_git') + '/external/w3c/web-platform-tests.git' + '@' + '3e0f283
76857901b2d3eefda82a3b622bbcabd41', |
| 122 | 122 |
| 123 'src/third_party/WebKit/LayoutTests/w3c/csswg-test': | 123 'src/third_party/WebKit/LayoutTests/w3c/csswg-test': |
| 124 Var('chromium_git') + '/external/w3c/csswg-test.git' + '@' + '0b12ea22689ee21
79f3e9bff389db22f4efd6ed5', | 124 Var('chromium_git') + '/external/w3c/csswg-test.git' + '@' + '0b12ea22689ee21
79f3e9bff389db22f4efd6ed5', |
| 125 | 125 |
| 126 'src/third_party/icu': | 126 'src/third_party/icu': |
| 127 Var('chromium_git') + '/chromium/deps/icu52.git' + '@' + '527ea2dd86afa2751a8
5d1cc4695f9e2e2d18022', # from svn revision 291706 | 127 Var('chromium_git') + '/chromium/deps/icu52.git' + '@' + 'ff8353094b0b29f2d50
059c452d15bbf0a84c0ad', # from svn revision 291774 |
| 128 | 128 |
| 129 'src/third_party/libexif/sources': | 129 'src/third_party/libexif/sources': |
| 130 Var('chromium_git') + '/chromium/deps/libexif/sources.git' + '@' + 'ed98343da
abd7b4497f97fda972e132e6877c48a', | 130 Var('chromium_git') + '/chromium/deps/libexif/sources.git' + '@' + 'ed98343da
abd7b4497f97fda972e132e6877c48a', |
| 131 | 131 |
| 132 'src/third_party/hunspell': | 132 'src/third_party/hunspell': |
| 133 Var('chromium_git') + '/chromium/deps/hunspell.git' + '@' + 'c956c0e97af00ef7
89afb2f64d02c9a5a50e6eb1', | 133 Var('chromium_git') + '/chromium/deps/hunspell.git' + '@' + 'c956c0e97af00ef7
89afb2f64d02c9a5a50e6eb1', |
| 134 | 134 |
| 135 'src/third_party/hunspell_dictionaries': | 135 'src/third_party/hunspell_dictionaries': |
| 136 Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + '456
0bdd463a3500e2334e85c8a0e9e5d5d6774e7', | 136 Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + '456
0bdd463a3500e2334e85c8a0e9e5d5d6774e7', |
| 137 | 137 |
| (...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 795 # corresponding .py files have already been deleted. | 795 # corresponding .py files have already been deleted. |
| 796 'name': 'remove_stale_pyc_files', | 796 'name': 'remove_stale_pyc_files', |
| 797 'pattern': 'src/tools/.*\\.py', | 797 'pattern': 'src/tools/.*\\.py', |
| 798 'action': [ | 798 'action': [ |
| 799 'python', | 799 'python', |
| 800 'src/tools/remove_stale_pyc_files.py', | 800 'src/tools/remove_stale_pyc_files.py', |
| 801 'src/tools', | 801 'src/tools', |
| 802 ], | 802 ], |
| 803 }, | 803 }, |
| 804 ] | 804 ] |
| OLD | NEW |