| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 | 46 |
| 47 # IBus framework | 47 # IBus framework |
| 48 _third_party_base + "ibus/files": "/ibus.git", | 48 _third_party_base + "ibus/files": "/ibus.git", |
| 49 | 49 |
| 50 # IBus input method for Traditional Chinese | 50 # IBus input method for Traditional Chinese |
| 51 _third_party_base + "ibus-chewing/files": "/ibus-chewing.git", | 51 _third_party_base + "ibus-chewing/files": "/ibus-chewing.git", |
| 52 | 52 |
| 53 # IBus input method for Japanese | 53 # IBus input method for Japanese |
| 54 _third_party_base + "ibus-anthy/files": "/ibus-anthy.git", | 54 _third_party_base + "ibus-anthy/files": "/ibus-anthy.git", |
| 55 | 55 |
| 56 # IBus input method for Korean |
| 57 _third_party_base + "ibus-hangul/files": "/ibus-hangul.git", |
| 58 |
| 56 # gflags 1.1 | 59 # gflags 1.1 |
| 57 _third_party_base + "gflags/files": | 60 _third_party_base + "gflags/files": |
| 58 "http://google-gflags.googlecode.com/svn/trunk@31", | 61 "http://google-gflags.googlecode.com/svn/trunk@31", |
| 59 | 62 |
| 60 # google-breakpad | 63 # google-breakpad |
| 61 _third_party_base + "google-breakpad/files": | 64 _third_party_base + "google-breakpad/files": |
| 62 "http://google-breakpad.googlecode.com/svn/trunk@400", | 65 "http://google-breakpad.googlecode.com/svn/trunk@400", |
| 63 | 66 |
| 64 # gtest 1.3.0 | 67 # gtest 1.3.0 |
| 65 _third_party_base + "gtest/files": | 68 _third_party_base + "gtest/files": |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 # openssh | 119 # openssh |
| 117 _third_party_base + "openssh": "/openssh.git", | 120 _third_party_base + "openssh": "/openssh.git", |
| 118 | 121 |
| 119 # openssl | 122 # openssl |
| 120 _third_party_base + "openssl": "/openssl.git", | 123 _third_party_base + "openssl": "/openssl.git", |
| 121 | 124 |
| 122 # tzdata | 125 # tzdata |
| 123 _third_party_base + "tzdata": "/tzdata.git", | 126 _third_party_base + "tzdata": "/tzdata.git", |
| 124 | 127 |
| 125 } | 128 } |
| OLD | NEW |