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. |
11 # | 11 # |
12 # When adding a new dependency, please update the top-level .gitignore file | 12 # When adding a new dependency, please update the top-level .gitignore file |
13 # to list the dependency's destination directory. | 13 # to list the dependency's destination directory. |
14 | 14 |
15 vars = { | 15 vars = { |
16 # Use this googlecode_url variable only if there is an internal mirror for it. | 16 # Use this googlecode_url variable only if there is an internal mirror for it. |
17 # If you do not know, use the full path while defining your new deps entry. | 17 # If you do not know, use the full path while defining your new deps entry. |
18 "googlecode_url": "http://%s.googlecode.com/svn", | 18 "googlecode_url": "http://%s.googlecode.com/svn", |
19 "sourceforge_url": "http://svn.code.sf.net/p/%(repo)s/code", | 19 "sourceforge_url": "http://svn.code.sf.net/p/%(repo)s/code", |
| 20 "llvm_url": "http://llvm.org/svn/llvm-project", |
| 21 "libcxx_revision": "196895", |
20 "webkit_trunk": "http://src.chromium.org/blink/trunk", | 22 "webkit_trunk": "http://src.chromium.org/blink/trunk", |
21 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 23 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
22 "webkit_revision": "163525", | 24 "webkit_revision": "163525", |
23 "chromium_git": "https://chromium.googlesource.com", | 25 "chromium_git": "https://chromium.googlesource.com", |
24 "chromiumos_git": "https://chromium.googlesource.com/chromiumos", | 26 "chromiumos_git": "https://chromium.googlesource.com/chromiumos", |
25 "skia_git": "https://skia.googlesource.com", | 27 "skia_git": "https://skia.googlesource.com", |
26 "swig_revision": "230490", | 28 "swig_revision": "230490", |
27 "nacl_revision": "12497", | 29 "nacl_revision": "12497", |
28 # After changing nacl_revision, run 'glient sync' and check native_client/DEPS | 30 # After changing nacl_revision, run 'glient sync' and check native_client/DEPS |
29 # to update other nacl_*_revision's. | 31 # to update other nacl_*_revision's. |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 "src/third_party/safe_browsing/testing": | 107 "src/third_party/safe_browsing/testing": |
106 (Var("googlecode_url") % "google-safe-browsing") + "/trunk/testing@112", | 108 (Var("googlecode_url") % "google-safe-browsing") + "/trunk/testing@112", |
107 | 109 |
108 "src/third_party/cacheinvalidation/src": | 110 "src/third_party/cacheinvalidation/src": |
109 (Var("googlecode_url") % "google-cache-invalidation-api") + | 111 (Var("googlecode_url") % "google-cache-invalidation-api") + |
110 "/trunk/src@314", | 112 "/trunk/src@314", |
111 | 113 |
112 "src/third_party/leveldatabase/src": | 114 "src/third_party/leveldatabase/src": |
113 (Var("googlecode_url") % "leveldb") + "/trunk@77", | 115 (Var("googlecode_url") % "leveldb") + "/trunk@77", |
114 | 116 |
| 117 "src/third_party/libc++/include": |
| 118 Var("llvm_url") + "/libcxx/trunk/include@" + Var("libcxx_revision"), |
| 119 |
| 120 "src/third_party/libc++/src": |
| 121 Var("llvm_url") + "/libcxx/trunk/src@" + Var("libcxx_revision"), |
| 122 |
| 123 "src/third_party/libc++abi/include": |
| 124 Var("llvm_url") + "/libcxxabi/trunk/include@" + Var("libcxx_revision"), |
| 125 |
| 126 "src/third_party/libc++abi/src": |
| 127 Var("llvm_url") + "/libcxxabi/trunk/src@" + Var("libcxx_revision"), |
| 128 |
115 "src/third_party/snappy/src": | 129 "src/third_party/snappy/src": |
116 (Var("googlecode_url") % "snappy") + "/trunk@80", | 130 (Var("googlecode_url") % "snappy") + "/trunk@80", |
117 | 131 |
118 "src/tools/grit": | 132 "src/tools/grit": |
119 (Var("googlecode_url") % "grit-i18n") + "/trunk@140", | 133 (Var("googlecode_url") % "grit-i18n") + "/trunk@140", |
120 | 134 |
121 "src/tools/gyp": | 135 "src/tools/gyp": |
122 (Var("googlecode_url") % "gyp") + "/trunk@1806", | 136 (Var("googlecode_url") % "gyp") + "/trunk@1806", |
123 | 137 |
124 "src/tools/swarming_client": | 138 "src/tools/swarming_client": |
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
693 "pattern": ".", | 707 "pattern": ".", |
694 "action": ["python", "src/build/gyp_chromium"], | 708 "action": ["python", "src/build/gyp_chromium"], |
695 }, | 709 }, |
696 { | 710 { |
697 # Check for landmines (reasons to clobber the build). | 711 # Check for landmines (reasons to clobber the build). |
698 "name": "landmines", | 712 "name": "landmines", |
699 "pattern": ".", | 713 "pattern": ".", |
700 "action": ["python", "src/build/landmines.py"], | 714 "action": ["python", "src/build/landmines.py"], |
701 }, | 715 }, |
702 ] | 716 ] |
OLD | NEW |