Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8696b16c authored by Henri Chataing's avatar Henri Chataing
Browse files

system/log: Warn against adding //vendor to the visibility

Test: m com.android.btservices
Bug: 305066880
Flag: EXEMPT, comment only
Change-Id: I44f7f44933a69f1dd30ebaa21ed9d58fd1eac322
parent 24287b55
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -15,6 +15,18 @@ cc_library {
    srcs: [
        "src/vlog_android.cc",
    ],

    //                             WARNING
    //
    // Before adding any package to the visibility list of the _bluetooth_
    // logging library: be aware that the burden of maintaining the dependents
    // will _always_ fall on the library developer. Dependent repositories
    // need to be updated for any breaking change.
    //
    // Always extend this list with strict package selection (e.g.
    // "//hardware/interfaces/bluetooth/aidl/vts"), _never_ with open selection
    // (e.g. "//vendor:__subpackages__").
    //
    visibility: [
        "//hardware/interfaces/bluetooth/aidl/vts",
        "//packages/modules/Bluetooth:__subpackages__",

system/log/OWNERS

0 → 100644
+1 −0
Original line number Diff line number Diff line
henrichataing@google.com