| 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 25 matching lines...) Expand all Loading... |
| 36 Var("chromiumos_git") + "/cros.git", | 36 Var("chromiumos_git") + "/cros.git", |
| 37 | 37 |
| 38 # login_manager | 38 # login_manager |
| 39 _platform_base + "login_manager": | 39 _platform_base + "login_manager": |
| 40 Var("chromiumos_git") + "/login_manager.git", | 40 Var("chromiumos_git") + "/login_manager.git", |
| 41 | 41 |
| 42 # pam_google | 42 # pam_google |
| 43 _platform_base + "pam_google": | 43 _platform_base + "pam_google": |
| 44 Var("chromiumos_git") + "/pam_google.git", | 44 Var("chromiumos_git") + "/pam_google.git", |
| 45 | 45 |
| 46 # IBus framework |
| 47 _third_party_base + "ibus/files": |
| 48 Var("chromiumos_git") + "/ibus.git", |
| 49 |
| 50 # IBus input method for Traditional Chinese |
| 51 _third_party_base + "ibus-chewing/files": |
| 52 Var("chromiumos_git") + "/ibus-chewing.git", |
| 53 |
| 54 # IBus input method for Japanese |
| 55 _third_party_base + "ibus-anthy/files": |
| 56 Var("chromiumos_git") + "/ibus-anthy.git", |
| 57 |
| 46 # gflags 1.1 | 58 # gflags 1.1 |
| 47 _third_party_base + "gflags/files": | 59 _third_party_base + "gflags/files": |
| 48 "http://google-gflags.googlecode.com/svn/trunk@31", | 60 "http://google-gflags.googlecode.com/svn/trunk@31", |
| 49 | 61 |
| 50 # google-breakpad | 62 # google-breakpad |
| 51 _third_party_base + "google-breakpad/files": | 63 _third_party_base + "google-breakpad/files": |
| 52 "http://google-breakpad.googlecode.com/svn/trunk@400", | 64 "http://google-breakpad.googlecode.com/svn/trunk@400", |
| 53 | 65 |
| 54 # gtest 1.3.0 | 66 # gtest 1.3.0 |
| 55 _third_party_base + "gtest/files": | 67 _third_party_base + "gtest/files": |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 Var("chromiumos_git") + "/kernel.git", | 102 Var("chromiumos_git") + "/kernel.git", |
| 91 | 103 |
| 92 # fio | 104 # fio |
| 93 _third_party_base + "fio/files": | 105 _third_party_base + "fio/files": |
| 94 Var("chromiumos_git") + "/fio.git@fio-1.34.2", | 106 Var("chromiumos_git") + "/fio.git@fio-1.34.2", |
| 95 | 107 |
| 96 # gpt | 108 # gpt |
| 97 _third_party_base + "gpt": | 109 _third_party_base + "gpt": |
| 98 Var("chromiumos_git") + "/gpt.git", | 110 Var("chromiumos_git") + "/gpt.git", |
| 99 } | 111 } |
| OLD | NEW |