| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 "http://src.chromium.org/svn/trunk/src/base@33520", | 100 "http://src.chromium.org/svn/trunk/src/base@33520", |
| 101 _third_party_base + "chrome/files/build": | 101 _third_party_base + "chrome/files/build": |
| 102 "http://src.chromium.org/svn/trunk/src/build@33520", | 102 "http://src.chromium.org/svn/trunk/src/build@33520", |
| 103 | 103 |
| 104 # kernel | 104 # kernel |
| 105 _third_party_base + "kernel/files": "/kernel.git", | 105 _third_party_base + "kernel/files": "/kernel.git", |
| 106 | 106 |
| 107 # fio | 107 # fio |
| 108 _third_party_base + "fio/files": "/fio.git@fio-1.34.2", | 108 _third_party_base + "fio/files": "/fio.git@fio-1.34.2", |
| 109 | 109 |
| 110 # flimflam |
| 111 _third_party_base + "flimflam": "/flimflam.git", |
| 112 |
| 110 # gpt | 113 # gpt |
| 111 _third_party_base + "gpt": "/gpt.git", | 114 _third_party_base + "gpt": "/gpt.git", |
| 112 | 115 |
| 113 # cairo - branch at 1.8.8, need to fix our clone somehow. | 116 # cairo - branch at 1.8.8, need to fix our clone somehow. |
| 114 _third_party_base + "cairo": "/cairo.git", | 117 _third_party_base + "cairo": "/cairo.git", |
| 115 | 118 |
| 116 # gconf - branch at 2.28.0, need to fix our clone somehow. | 119 # gconf - branch at 2.28.0, need to fix our clone somehow. |
| 117 _third_party_base + "gconf": "/gconf.git", | 120 _third_party_base + "gconf": "/gconf.git", |
| 118 | 121 |
| 119 # curl | 122 # curl |
| 120 _third_party_base + "curl": "/curl.git", | 123 _third_party_base + "curl": "/curl.git", |
| 121 | 124 |
| 122 # openssh | 125 # openssh |
| 123 _third_party_base + "openssh": "/openssh.git", | 126 _third_party_base + "openssh": "/openssh.git", |
| 124 | 127 |
| 125 # openssl | 128 # openssl |
| 126 _third_party_base + "openssl": "/openssl.git", | 129 _third_party_base + "openssl": "/openssl.git", |
| 127 | 130 |
| 128 # tzdata | 131 # tzdata |
| 129 _third_party_base + "tzdata": "/tzdata.git", | 132 _third_party_base + "tzdata": "/tzdata.git", |
| 130 | 133 |
| 131 # xf86-video-msm from codeaurora.org | 134 # xf86-video-msm from codeaurora.org |
| 132 _third_party_base + "xf86-video-msm": "/xf86-video-msm.git", | 135 _third_party_base + "xf86-video-msm": "/xf86-video-msm.git", |
| 133 | 136 |
| 134 # pango (i18n text rendering) | 137 # pango (i18n text rendering) |
| 135 _third_party_base + "pango": "/pango.git", | 138 _third_party_base + "pango": "/pango.git", |
| 136 | 139 |
| 137 } | 140 } |
| OLD | NEW |