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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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 # gpt | 110 # gpt |
111 _third_party_base + "gpt": "/gpt.git", | 111 _third_party_base + "gpt": "/gpt.git", |
112 | 112 |
113 # cairo - branch at 1.8.8, need to fix our clone somehow. | 113 # cairo - branch at 1.8.8, need to fix our clone somehow. |
114 _third_party_base + "cairo": "/cairo.git", | 114 _third_party_base + "cairo": "/cairo.git", |
115 | 115 |
116 # gconf - branch at 2.28.0, need to fix our clone somehow. | 116 # gconf - branch at 2.28.0, need to fix our clone somehow. |
117 _third_party_base + "gconf": "/gconf.git", | 117 _third_party_base + "gconf": "/gconf.git", |
118 | 118 |
119 # curl | 119 # curl |
120 _third_party_base + "curl": "/curl.git", | 120 _third_party_base + "curl": "/curl.git", |
121 | 121 |
122 # openssh | 122 # openssh |
123 _third_party_base + "openssh": "/openssh.git", | 123 _third_party_base + "openssh": "/openssh.git", |
124 | 124 |
125 # openssl | 125 # openssl |
126 _third_party_base + "openssl": "/openssl.git", | 126 _third_party_base + "openssl": "/openssl.git", |
127 | 127 |
128 # tzdata | 128 # tzdata |
129 _third_party_base + "tzdata": "/tzdata.git", | 129 _third_party_base + "tzdata": "/tzdata.git", |
130 | 130 |
131 # xf86-video-msm from codeaurora.org | 131 # xf86-video-msm from codeaurora.org |
132 _third_party_base + "xf86-video-msm": "/xf86-video-msm.git", | 132 _third_party_base + "xf86-video-msm": "/xf86-video-msm.git", |
133 | 133 |
134 # pango (i18n text rendering) | 134 # pango (i18n text rendering) |
135 _third_party_base + "pango": "/pango.git", | 135 _third_party_base + "pango": "/pango.git", |
136 | 136 |
137 # upstart | |
138 _third_party_base + "upstart/files" : "/upstart.git", | |
petkov
2010/01/06 05:27:46
Extra space before the colon. If you fix it, could
| |
137 } | 139 } |
OLD | NEW |