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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 "src/third_party/angle": | 82 "src/third_party/angle": |
83 Var("chromium_git") + | 83 Var("chromium_git") + |
84 "/angle/angle.git@95fa672f26db492aee2076b0acb524149d52c68f", | 84 "/angle/angle.git@95fa672f26db492aee2076b0acb524149d52c68f", |
85 | 85 |
86 "src/third_party/trace-viewer": | 86 "src/third_party/trace-viewer": |
87 (Var("googlecode_url") % "trace-viewer") + "/trunk@1069", | 87 (Var("googlecode_url") % "trace-viewer") + "/trunk@1069", |
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/WebKit/LayoutTests/w3c/web-platform-tests": |
| 93 Var("chromium_git") + |
| 94 "/external/w3c/web-platform-tests.git@35a9c0f1348052303a03523781c26ca98572ff
a7", |
| 95 |
| 96 "src/third_party/WebKit/LayoutTests/w3c/csswg-test": |
| 97 Var("chromium_git") + |
| 98 "/external/w3c/csswg-test.git@8c415e3215a203fa3a22dbdd1799279fdf44c81e", |
| 99 |
92 "src/third_party/icu": | 100 "src/third_party/icu": |
93 "/trunk/deps/third_party/icu46@241739", | 101 "/trunk/deps/third_party/icu46@241739", |
94 | 102 |
95 "src/third_party/libexif/sources": | 103 "src/third_party/libexif/sources": |
96 "/trunk/deps/third_party/libexif/sources@146817", | 104 "/trunk/deps/third_party/libexif/sources@146817", |
97 | 105 |
98 "src/third_party/hunspell": | 106 "src/third_party/hunspell": |
99 "/trunk/deps/third_party/hunspell@206172", | 107 "/trunk/deps/third_party/hunspell@206172", |
100 | 108 |
101 "src/third_party/hunspell_dictionaries": | 109 "src/third_party/hunspell_dictionaries": |
(...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
703 "pattern": ".", | 711 "pattern": ".", |
704 "action": ["python", "src/build/gyp_chromium"], | 712 "action": ["python", "src/build/gyp_chromium"], |
705 }, | 713 }, |
706 { | 714 { |
707 # Check for landmines (reasons to clobber the build). | 715 # Check for landmines (reasons to clobber the build). |
708 "name": "landmines", | 716 "name": "landmines", |
709 "pattern": ".", | 717 "pattern": ".", |
710 "action": ["python", "src/build/landmines.py"], | 718 "action": ["python", "src/build/landmines.py"], |
711 }, | 719 }, |
712 ] | 720 ] |
OLD | NEW |