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

Commit 3dd6a6a2 authored by Henri Chataing's avatar Henri Chataing Committed by Automerger Merge Worker
Browse files

Merge "system/log: Warn against adding //vendor to the visibility" into main am: 19fd2655

parents 47bf53a7 19fd2655
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