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' + '@' + 'c34eb9d56224a2b25
d1521b25f6a5a1ea7a855c4', # from svn revision 1555 | 116 Var('chromium_git') + '/external/trace-viewer.git' + '@' + '5b0446a2f335aba16
29fb629f02fb6b5253ef516', |
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/icu': | 121 'src/third_party/icu': |
122 Var('chromium_git') + '/chromium/deps/icu52.git' + '@' + 'd2abf6c1e1f986f4a8d
b0341b8a8c55c55ec1174', # from svn revision 292003 | 122 Var('chromium_git') + '/chromium/deps/icu52.git' + '@' + 'd2abf6c1e1f986f4a8d
b0341b8a8c55c55ec1174', # from svn revision 292003 |
123 | 123 |
124 'src/third_party/libexif/sources': | 124 'src/third_party/libexif/sources': |
125 Var('chromium_git') + '/chromium/deps/libexif/sources.git' + '@' + 'ed98343da
abd7b4497f97fda972e132e6877c48a', | 125 Var('chromium_git') + '/chromium/deps/libexif/sources.git' + '@' + 'ed98343da
abd7b4497f97fda972e132e6877c48a', |
126 | 126 |
(...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
792 # corresponding .py files have already been deleted. | 792 # corresponding .py files have already been deleted. |
793 'name': 'remove_stale_pyc_files', | 793 'name': 'remove_stale_pyc_files', |
794 'pattern': 'src/tools/.*\\.py', | 794 'pattern': 'src/tools/.*\\.py', |
795 'action': [ | 795 'action': [ |
796 'python', | 796 'python', |
797 'src/tools/remove_stale_pyc_files.py', | 797 'src/tools/remove_stale_pyc_files.py', |
798 'src/tools', | 798 'src/tools', |
799 ], | 799 ], |
800 }, | 800 }, |
801 ] | 801 ] |
OLD | NEW |