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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 'src/third_party/WebKit': | 121 'src/third_party/WebKit': |
122 Var('chromium_git') + '/chromium/blink.git' + '@' + Var('webkit_revision'), | 122 Var('chromium_git') + '/chromium/blink.git' + '@' + Var('webkit_revision'), |
123 | 123 |
124 'src/third_party/WebKit/LayoutTests/w3c/web-platform-tests': | 124 'src/third_party/WebKit/LayoutTests/w3c/web-platform-tests': |
125 Var('chromium_git') + '/external/w3c/web-platform-tests.git' + '@' + '3e0f283
76857901b2d3eefda82a3b622bbcabd41', | 125 Var('chromium_git') + '/external/w3c/web-platform-tests.git' + '@' + '3e0f283
76857901b2d3eefda82a3b622bbcabd41', |
126 | 126 |
127 'src/third_party/WebKit/LayoutTests/w3c/csswg-test': | 127 'src/third_party/WebKit/LayoutTests/w3c/csswg-test': |
128 Var('chromium_git') + '/external/w3c/csswg-test.git' + '@' + '0b12ea22689ee21
79f3e9bff389db22f4efd6ed5', | 128 Var('chromium_git') + '/external/w3c/csswg-test.git' + '@' + '0b12ea22689ee21
79f3e9bff389db22f4efd6ed5', |
129 | 129 |
130 'src/third_party/icu': | 130 'src/third_party/icu': |
131 Var('chromium_git') + '/chromium/deps/icu52.git' + '@' + 'fdf0bb34eaddce23811
770b987ecf95ee18572d6', | 131 Var('chromium_git') + '/chromium/deps/icu52.git' + '@' + 'a4ce5bf56788dbb4835
a5ef6143384266bbff5f5', # from svn revision 291660 |
132 | 132 |
133 'src/third_party/libexif/sources': | 133 'src/third_party/libexif/sources': |
134 Var('chromium_git') + '/chromium/deps/libexif/sources.git' + '@' + 'ed98343da
abd7b4497f97fda972e132e6877c48a', | 134 Var('chromium_git') + '/chromium/deps/libexif/sources.git' + '@' + 'ed98343da
abd7b4497f97fda972e132e6877c48a', |
135 | 135 |
136 'src/third_party/hunspell': | 136 'src/third_party/hunspell': |
137 Var('chromium_git') + '/chromium/deps/hunspell.git' + '@' + 'c956c0e97af00ef7
89afb2f64d02c9a5a50e6eb1', | 137 Var('chromium_git') + '/chromium/deps/hunspell.git' + '@' + 'c956c0e97af00ef7
89afb2f64d02c9a5a50e6eb1', |
138 | 138 |
139 'src/third_party/hunspell_dictionaries': | 139 'src/third_party/hunspell_dictionaries': |
140 Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + '456
0bdd463a3500e2334e85c8a0e9e5d5d6774e7', | 140 Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + '456
0bdd463a3500e2334e85c8a0e9e5d5d6774e7', |
141 | 141 |
(...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
799 # corresponding .py files have already been deleted. | 799 # corresponding .py files have already been deleted. |
800 'name': 'remove_stale_pyc_files', | 800 'name': 'remove_stale_pyc_files', |
801 'pattern': 'src/tools/.*\\.py', | 801 'pattern': 'src/tools/.*\\.py', |
802 'action': [ | 802 'action': [ |
803 'python', | 803 'python', |
804 'src/tools/remove_stale_pyc_files.py', | 804 'src/tools/remove_stale_pyc_files.py', |
805 'src/tools', | 805 'src/tools', |
806 ], | 806 ], |
807 }, | 807 }, |
808 ] | 808 ] |
OLD | NEW |