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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 'src/testing/gmock': | 109 'src/testing/gmock': |
110 Var('chromium_git') + '/external/googlemock.git' + '@' + '896ba0e03f520fb9b6e
d582bde2bd00847e3c3f2', # from svn revision 485 | 110 Var('chromium_git') + '/external/googlemock.git' + '@' + '896ba0e03f520fb9b6e
d582bde2bd00847e3c3f2', # from svn revision 485 |
111 | 111 |
112 'src/third_party/angle': | 112 'src/third_party/angle': |
113 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), | 113 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), |
114 | 114 |
115 'src/third_party/colorama/src': | 115 'src/third_party/colorama/src': |
116 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d27
89ecbd7e8db2e18e6b8', | 116 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d27
89ecbd7e8db2e18e6b8', |
117 | 117 |
118 'src/third_party/trace-viewer': | 118 'src/third_party/trace-viewer': |
119 Var('chromium_git') + '/external/trace-viewer.git' + '@' + '172d4941a79a3354b
918f85bc9a3ea9c134fc1ad', # from svn revision 1532 | 119 Var('chromium_git') + '/external/trace-viewer.git' + '@' + '56b74bad6d1485bb8
e54ca0a9539da9842e695ca', # from svn revision 1534 |
120 | 120 |
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 |
(...skipping 669 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 |