Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
brillo/ | 03-May-2024 | - | 45,304 | 31,497 | ||
install_attributes/ | 03-May-2024 | - | 274 | 160 | ||
policy/ | 03-May-2024 | - | 2,593 | 1,788 | ||
.clang-format | D | 03-May-2024 | 1.2 KiB | |||
Android.bp | D | 03-May-2024 | 9.3 KiB | 330 | 304 | |
BUILD.gn | D | 03-May-2024 | 18.1 KiB | 670 | 618 | |
METADATA | D | 03-May-2024 | 39 | 4 | 3 | |
MODULE_LICENSE_BSD | D | 03-May-2024 | 0 | |||
NOTICE | D | 03-May-2024 | 1.5 KiB | 28 | 27 | |
OWNERS | D | 03-May-2024 | 124 | 10 | 7 | |
PRESUBMIT.cfg | D | 03-May-2024 | 177 | 7 | 5 | |
README.md | D | 03-May-2024 | 897 | 21 | 14 | |
libpolicy.ver | D | 03-May-2024 | 443 | 20 | 16 | |
testrunner.cc | D | 03-May-2024 | 431 | 17 | 8 | |
testrunner_android.cc | D | 03-May-2024 | 879 | 27 | 8 |
README.md
1# libbrillo: platform utility library 2 3libbrillo is a shared library meant to hold common utility code that we deem 4useful for platform projects. 5It supplements the functionality provided by libbase/libchrome since that 6project, by design, only holds functionality that Chromium (the browser) needs. 7As a result, this tends to be more OS-centric code. 8 9## AOSP Usage 10 11This project is also used by [Update Engine] which is maintained in AOSP. 12However, AOSP doesn't use this codebase directly, it maintains its own 13[libbrillo fork](https://android.googlesource.com/platform/external/libbrillo/). 14 15To help keep the projects in sync, we have a gsubtree set up on our GoB: 16https://chromium.googlesource.com/chromiumos/platform2/libbrillo/ 17 18This allows AOSP to cherry pick or merge changes directly back into their fork. 19 20[Update Engine]: https://android.googlesource.com/platform/system/update_engine/ 21