| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 "/trunk/deps/third_party/hunspell@206172", | 108 "/trunk/deps/third_party/hunspell@206172", |
| 109 | 109 |
| 110 "src/third_party/hunspell_dictionaries": | 110 "src/third_party/hunspell_dictionaries": |
| 111 "/trunk/deps/third_party/hunspell_dictionaries@193701", | 111 "/trunk/deps/third_party/hunspell_dictionaries@193701", |
| 112 | 112 |
| 113 "src/third_party/safe_browsing/testing": | 113 "src/third_party/safe_browsing/testing": |
| 114 (Var("googlecode_url") % "google-safe-browsing") + "/trunk/testing@112", | 114 (Var("googlecode_url") % "google-safe-browsing") + "/trunk/testing@112", |
| 115 | 115 |
| 116 "src/third_party/cacheinvalidation/src": | 116 "src/third_party/cacheinvalidation/src": |
| 117 (Var("googlecode_url") % "google-cache-invalidation-api") + | 117 (Var("googlecode_url") % "google-cache-invalidation-api") + |
| 118 "/trunk/src@321", | 118 "/trunk/src@330", |
| 119 | 119 |
| 120 "src/third_party/leveldatabase/src": | 120 "src/third_party/leveldatabase/src": |
| 121 (Var("googlecode_url") % "leveldb") + "/trunk@79", | 121 (Var("googlecode_url") % "leveldb") + "/trunk@79", |
| 122 | 122 |
| 123 # TODO(thakis): Pull from svn instead, http://crbug.com/333071 | 123 # TODO(thakis): Pull from svn instead, http://crbug.com/333071 |
| 124 "src/third_party/libc++/trunk": | 124 "src/third_party/libc++/trunk": |
| 125 Var("llvm_git") + "/libcxx.git@" + Var("libcxx_revision"), | 125 Var("llvm_git") + "/libcxx.git@" + Var("libcxx_revision"), |
| 126 | 126 |
| 127 # TODO(thakis): Pull from svn instead, http://crbug.com/333071 | 127 # TODO(thakis): Pull from svn instead, http://crbug.com/333071 |
| 128 "src/third_party/libc++abi/trunk": | 128 "src/third_party/libc++abi/trunk": |
| (...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 752 "-s", "src/build/linux/bin/eu-strip.sha1", | 752 "-s", "src/build/linux/bin/eu-strip.sha1", |
| 753 ], | 753 ], |
| 754 }, | 754 }, |
| 755 { | 755 { |
| 756 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 756 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 757 "name": "gyp", | 757 "name": "gyp", |
| 758 "pattern": ".", | 758 "pattern": ".", |
| 759 "action": ["python", "src/build/gyp_chromium"], | 759 "action": ["python", "src/build/gyp_chromium"], |
| 760 }, | 760 }, |
| 761 ] | 761 ] |
| OLD | NEW |