| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 | 2 |
| 3 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. | 3 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 # NOTES | 7 # NOTES |
| 8 # | 8 # |
| 9 # This file must exist both in trunk and trunk/src, since some users sync | 9 # This file must exist both in trunk and trunk/src, since some users sync |
| 10 # trunk and some sync src. (In the end, src will win, since src-internal will | 10 # trunk and some sync src. (In the end, src will win, since src-internal will |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 _third_party_base + "chrome/files/build": | 85 _third_party_base + "chrome/files/build": |
| 86 "http://src.chromium.org/svn/trunk/src/build@29779", | 86 "http://src.chromium.org/svn/trunk/src/build@29779", |
| 87 | 87 |
| 88 # kernel | 88 # kernel |
| 89 _third_party_base + "kernel/files": | 89 _third_party_base + "kernel/files": |
| 90 Var("chromiumos_git") + "/kernel.git", | 90 Var("chromiumos_git") + "/kernel.git", |
| 91 | 91 |
| 92 # fio | 92 # fio |
| 93 _third_party_base + "fio/files": | 93 _third_party_base + "fio/files": |
| 94 Var("chromiumos_git") + "/fio.git@fio-1.34.2", | 94 Var("chromiumos_git") + "/fio.git@fio-1.34.2", |
| 95 |
| 96 # gpt |
| 97 _third_party_base + "gpt": |
| 98 Var("chromiumos_git") + "/gpt.git", |
| 95 } | 99 } |
| OLD | NEW |