| OLD | NEW | 
| (Empty) |  | 
 |   1 # Copyright 2015 Google Inc. All Rights Reserved. | 
 |   2 # | 
 |   3 # Licensed under the Apache License, Version 2.0 (the "License"); | 
 |   4 # you may not use this file except in compliance with the License. | 
 |   5 # You may obtain a copy of the License at | 
 |   6 # | 
 |   7 #     http://www.apache.org/licenses/LICENSE-2.0 | 
 |   8 # | 
 |   9 # Unless required by applicable law or agreed to in writing, software | 
 |  10 # distributed under the License is distributed on an "AS IS" BASIS, | 
 |  11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
 |  12 # See the License for the specific language governing permissions and | 
 |  13 # limitations under the License. | 
 |  14 # | 
 |  15 # This file is read by gitdeps.py to allow loading subsections of git repos | 
 |  16 # through sparse checkouts. | 
 |  17  | 
 |  18 vars = { | 
 |  19   "chrome_revision": "a691a7278a6f58da832b8818d2d00afa0687cd0d", | 
 |  20   "gyp_revision": "bac4680ec9a5c55ab692490b6732999648ecf1e9", | 
 |  21   "chrome_base_git": "https://chromium.googlesource.com/", | 
 |  22 } | 
 |  23  | 
 |  24 deps = { | 
 |  25   "":( | 
 |  26     Var("chrome_base_git") + "chromium/src", | 
 |  27     [ | 
 |  28       # Chrome base and other top-level dependencies. | 
 |  29       "base", | 
 |  30       "build", | 
 |  31       "testing", | 
 |  32       "tools", | 
 |  33  | 
 |  34       # third_party dependencies. | 
 |  35       "third_party/protobuf", | 
 |  36     ], | 
 |  37     Var("chrome_revision") | 
 |  38   ), | 
 |  39   "tools/gyp": | 
 |  40     (Var("chrome_base_git") + "external/gyp/", | 
 |  41     [], | 
 |  42     Var("gyp_revision")), | 
 |  43 } | 
| OLD | NEW |