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

Commit ccf092c9 authored by Steven Moreland's avatar Steven Moreland Committed by android-build-merger
Browse files

Merge "libvr_manager: Remove libbinder as static library."

am: 82bc007a

Change-Id: Ia5f339a5c629de551ddea0b04e9d28ee5d8d37b8
parents 25b8e437 82bc007a
Loading
Loading
Loading
Loading
+11 −19
Original line number Diff line number Diff line
@@ -12,25 +12,17 @@
// See the License for the specific language governing permissions and
// limitations under the License.

exported_include_dirs = [ "include" ]

include_dirs = ["frameworks/native/include/vr/vr_manager"]

src_files = [
cc_library_static {
    name: "libvr_manager",
    srcs: [
        "vr_manager.cpp",
        "trusted_uids.cpp",
]

static_libs = [
    ],
    include_dirs: ["frameworks/native/include/vr/vr_manager"],
    export_include_dirs: [ "include" ],
    cflags: ["-Wall", "-Werror", "-Wunused", "-Wunreachable-code"],
    shared_libs: [
        "libutils",
        "libbinder",
]

cc_library_static {
    srcs: src_files,
    include_dirs: include_dirs,
    export_include_dirs: exported_include_dirs,
    cflags: ["-Wall", "-Werror", "-Wunused", "-Wunreachable-code"],
    static_libs: static_libs,
    name: "libvr_manager",
    ],
}