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