| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 'src/testing/gmock': | 106 'src/testing/gmock': |
| 107 Var('chromium_git') + '/external/googlemock.git' + '@' + '896ba0e03f520fb9b6e
d582bde2bd00847e3c3f2', # from svn revision 485 | 107 Var('chromium_git') + '/external/googlemock.git' + '@' + '896ba0e03f520fb9b6e
d582bde2bd00847e3c3f2', # from svn revision 485 |
| 108 | 108 |
| 109 'src/third_party/angle': | 109 'src/third_party/angle': |
| 110 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), | 110 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), |
| 111 | 111 |
| 112 'src/third_party/colorama/src': | 112 'src/third_party/colorama/src': |
| 113 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d27
89ecbd7e8db2e18e6b8', | 113 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d27
89ecbd7e8db2e18e6b8', |
| 114 | 114 |
| 115 'src/third_party/trace-viewer': | 115 'src/third_party/trace-viewer': |
| 116 Var('chromium_git') + '/external/trace-viewer.git' + '@' + '56b74bad6d1485bb8
e54ca0a9539da9842e695ca', # from svn revision 1534 | 116 Var('chromium_git') + '/external/trace-viewer.git' + '@' + '28dca0dcd6dd243be
b96b2f091a1b78772d5b91d', # from svn revision 1550 |
| 117 | 117 |
| 118 'src/third_party/WebKit': | 118 'src/third_party/WebKit': |
| 119 Var('chromium_git') + '/chromium/blink.git' + '@' + Var('webkit_revision'), | 119 Var('chromium_git') + '/chromium/blink.git' + '@' + Var('webkit_revision'), |
| 120 | 120 |
| 121 'src/third_party/WebKit/LayoutTests/w3c/web-platform-tests': | 121 'src/third_party/WebKit/LayoutTests/w3c/web-platform-tests': |
| 122 Var('chromium_git') + '/external/w3c/web-platform-tests.git' + '@' + '3e0f283
76857901b2d3eefda82a3b622bbcabd41', | 122 Var('chromium_git') + '/external/w3c/web-platform-tests.git' + '@' + '3e0f283
76857901b2d3eefda82a3b622bbcabd41', |
| 123 | 123 |
| 124 'src/third_party/WebKit/LayoutTests/w3c/csswg-test': | 124 'src/third_party/WebKit/LayoutTests/w3c/csswg-test': |
| 125 Var('chromium_git') + '/external/w3c/csswg-test.git' + '@' + '0b12ea22689ee21
79f3e9bff389db22f4efd6ed5', | 125 Var('chromium_git') + '/external/w3c/csswg-test.git' + '@' + '0b12ea22689ee21
79f3e9bff389db22f4efd6ed5', |
| 126 | 126 |
| (...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 800 # corresponding .py files have already been deleted. | 800 # corresponding .py files have already been deleted. |
| 801 'name': 'remove_stale_pyc_files', | 801 'name': 'remove_stale_pyc_files', |
| 802 'pattern': 'src/tools/.*\\.py', | 802 'pattern': 'src/tools/.*\\.py', |
| 803 'action': [ | 803 'action': [ |
| 804 'python', | 804 'python', |
| 805 'src/tools/remove_stale_pyc_files.py', | 805 'src/tools/remove_stale_pyc_files.py', |
| 806 'src/tools', | 806 'src/tools', |
| 807 ], | 807 ], |
| 808 }, | 808 }, |
| 809 ] | 809 ] |
| OLD | NEW |