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 | 7 # python tools/deps2git/deps2git.py -o .DEPS.git |
8 # gclient runhooks | 8 # gclient runhooks |
9 # DO NOT CHECK IN CHANGES TO .DEPS.git. It will be automatically updated by | 9 # DO NOT CHECK IN CHANGES TO .DEPS.git. It will be automatically updated by |
10 # a bot when you modify this one. | 10 # a bot when you modify this one. |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 (Var("googlecode_url") % "open-vcdiff") + "/trunk@42", | 74 (Var("googlecode_url") % "open-vcdiff") + "/trunk@42", |
75 | 75 |
76 "src/testing/gtest": | 76 "src/testing/gtest": |
77 (Var("googlecode_url") % "googletest") + "/trunk@629", | 77 (Var("googlecode_url") % "googletest") + "/trunk@629", |
78 | 78 |
79 "src/testing/gmock": | 79 "src/testing/gmock": |
80 (Var("googlecode_url") % "googlemock") + "/trunk@410", | 80 (Var("googlecode_url") % "googlemock") + "/trunk@410", |
81 | 81 |
82 "src/third_party/angle_dx11": | 82 "src/third_party/angle_dx11": |
83 Var("chromium_git") + | 83 Var("chromium_git") + |
84 "/external/angle.git@9c318342233f68b915d39c8f1f181b9ef545c4db", | 84 "/external/angle.git@a60e0805721f62c28a55faf2df74472cc5fc91fc", |
85 | 85 |
86 "src/third_party/trace-viewer": | 86 "src/third_party/trace-viewer": |
87 (Var("googlecode_url") % "trace-viewer") + "/trunk@1057", | 87 (Var("googlecode_url") % "trace-viewer") + "/trunk@1057", |
88 | 88 |
89 "src/third_party/WebKit": | 89 "src/third_party/WebKit": |
90 Var("webkit_trunk") + "@" + Var("webkit_revision"), | 90 Var("webkit_trunk") + "@" + Var("webkit_revision"), |
91 | 91 |
92 "src/third_party/icu": | 92 "src/third_party/icu": |
93 "/trunk/deps/third_party/icu46@228516", | 93 "/trunk/deps/third_party/icu46@228516", |
94 | 94 |
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
666 "pattern": ".", | 666 "pattern": ".", |
667 "action": ["python", "src/build/gyp_chromium"], | 667 "action": ["python", "src/build/gyp_chromium"], |
668 }, | 668 }, |
669 { | 669 { |
670 # Check for landmines (reasons to clobber the build). | 670 # Check for landmines (reasons to clobber the build). |
671 "name": "landmines", | 671 "name": "landmines", |
672 "pattern": ".", | 672 "pattern": ".", |
673 "action": ["python", "src/build/landmines.py"], | 673 "action": ["python", "src/build/landmines.py"], |
674 }, | 674 }, |
675 ] | 675 ] |
OLD | NEW |