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

Commit 19249bd3 authored by Ray Essick's avatar Ray Essick
Browse files

Replace raw include paths with header_libs

Replace the use of raw include paths involving media extractors with
header_libs and export_include_dirs.

Bug: 201944263
Test: build
Change-Id: If1d43fbdcc756af0c1943739ec83d482af46095e
parent 485c0cf5
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -24,10 +24,6 @@ package {
cc_defaults {
    name: "extractor-defaults",

    include_dirs: [
        "frameworks/av/media/libstagefright/include",
    ],

    shared_libs: [
        "liblog",
    ],
+4 −0
Original line number Diff line number Diff line
@@ -21,6 +21,10 @@ cc_library {

    srcs: ["AACExtractor.cpp"],

    export_include_dirs: [
        "include",
    ],

    static_libs: [
        "libstagefright_foundation",
        "libstagefright_metadatautils",
+4 −0
Original line number Diff line number Diff line
@@ -21,6 +21,10 @@ cc_library {

    srcs: ["AMRExtractor.cpp"],

    export_include_dirs: [
        "include",
    ],

    static_libs: [
        "libstagefright_foundation",
    ],
Loading