| 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 many languages (e.g. Thai) |
| 57 _third_party_base + "ibus-m17n/files": "/ibus-m17n.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 28 matching lines...) Expand all Loading... |
| 94 | 97 |
| 95 # kernel | 98 # kernel |
| 96 _third_party_base + "kernel/files": "/kernel.git", | 99 _third_party_base + "kernel/files": "/kernel.git", |
| 97 | 100 |
| 98 # fio | 101 # fio |
| 99 _third_party_base + "fio/files": "/fio.git@fio-1.34.2", | 102 _third_party_base + "fio/files": "/fio.git@fio-1.34.2", |
| 100 | 103 |
| 101 # gpt | 104 # gpt |
| 102 _third_party_base + "gpt": "/gpt.git", | 105 _third_party_base + "gpt": "/gpt.git", |
| 103 } | 106 } |
| OLD | NEW |