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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 | 92 |
93 "src/testing/gtest": | 93 "src/testing/gtest": |
94 (Var("googlecode_url") % "googletest") + "/trunk@643", | 94 (Var("googlecode_url") % "googletest") + "/trunk@643", |
95 | 95 |
96 "src/testing/gmock": | 96 "src/testing/gmock": |
97 (Var("googlecode_url") % "googlemock") + "/trunk@410", | 97 (Var("googlecode_url") % "googlemock") + "/trunk@410", |
98 | 98 |
99 "src/third_party/angle": | 99 "src/third_party/angle": |
100 Var("chromium_git") + "/angle/angle.git@" + Var("angle_revision"), | 100 Var("chromium_git") + "/angle/angle.git@" + Var("angle_revision"), |
101 | 101 |
102 "src/third_party/colorama/src": | |
103 Var("chromium_git") + "/external/colorama.git@799604a104", | |
104 | |
105 "src/third_party/trace-viewer": | 102 "src/third_party/trace-viewer": |
106 (Var("googlecode_url") % "trace-viewer") + "/trunk@1281", | 103 (Var("googlecode_url") % "trace-viewer") + "/trunk@1281", |
107 | 104 |
108 "src/third_party/WebKit": | 105 "src/third_party/WebKit": |
109 Var("webkit_trunk") + "@" + Var("webkit_revision"), | 106 Var("webkit_trunk") + "@" + Var("webkit_revision"), |
110 | 107 |
111 "src/third_party/WebKit/LayoutTests/w3c/web-platform-tests": | 108 "src/third_party/WebKit/LayoutTests/w3c/web-platform-tests": |
112 Var("chromium_git") + | 109 Var("chromium_git") + |
113 "/external/w3c/web-platform-tests.git@6bed4516fe8522d65512c76ef02e4f0ae82343
95", | 110 "/external/w3c/web-platform-tests.git@6bed4516fe8522d65512c76ef02e4f0ae82343
95", |
114 | 111 |
(...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
780 "-s", "src/third_party/drmemory/drmemory-windows-sfx.exe.sha1", | 777 "-s", "src/third_party/drmemory/drmemory-windows-sfx.exe.sha1", |
781 ], | 778 ], |
782 }, | 779 }, |
783 { | 780 { |
784 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 781 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
785 "name": "gyp", | 782 "name": "gyp", |
786 "pattern": ".", | 783 "pattern": ".", |
787 "action": ["python", "src/build/gyp_chromium"], | 784 "action": ["python", "src/build/gyp_chromium"], |
788 }, | 785 }, |
789 ] | 786 ] |
OLD | NEW |