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

Commit b5673033 authored by Josh Gao's avatar Josh Gao
Browse files

adbd: add apex_available and visibility for internal libs.

abb links against libadbd_core for the shell protocol, and must be
on the system image because it links against cmd, so let's just
expose it to abb for now.

Bug: http://b/151398197
Test: treehugger
Change-Id: Id926bc4324d3259def21ea19d3bd72320311a6e3
parent b962d6be
Loading
Loading
Loading
Loading
+18 −0
Original line number Diff line number Diff line
@@ -436,6 +436,15 @@ cc_library_static {
            ],
        }
    },

    apex_available: [
        "//apex_available:platform",
        "com.android.adbd",
    ],
    visibility: [
        "//bootable/recovery/minadbd",
        "//system/core/adb",
    ],
}

cc_library {
@@ -502,6 +511,15 @@ cc_library {
            ],
        },
    },

    apex_available: [
        "//apex_available:platform",
        "com.android.adbd",
    ],
    visibility: [
        "//system/core/adb",
    ],

}

cc_library {