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

Commit 7388632d authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 7183400 from d6f849e0 to sc-release

Change-Id: I5aeacbad6567b0c5fd1dafee5eef8f72ce2cfdb4
parents 0e6220f7 d6f849e0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ license {
    ],
}

cc_library_shared {
cc_library {
    name: "libaudiopreprocessing",
    vendor: true,
    relative_install_path: "soundfx",
+4 −2
Original line number Diff line number Diff line
@@ -12,14 +12,16 @@ package {
cc_benchmark {
    name: "preprocessing_benchmark",
    vendor: true,
    relative_install_path: "soundfx",
    srcs: ["preprocessing_benchmark.cpp"],
    shared_libs: [
        "libaudiopreprocessing",
        "libaudioutils",
        "liblog",
        "libutils",
    ],
    static_libs: [
        "libaudiopreprocessing",
        "webrtc_audio_processing",
    ],
    cflags: [
        "-DWEBRTC_POSIX",
        "-fvisibility=default",
+4 −6
Original line number Diff line number Diff line
@@ -12,19 +12,17 @@ package {

cc_test {
    name: "AudioPreProcessingTest",

    vendor: true,

    relative_install_path: "soundfx",

    srcs: ["PreProcessingTest.cpp"],

    shared_libs: [
        "libaudiopreprocessing",
        "libaudioutils",
        "liblog",
        "libutils",
    ],
    static_libs: [
        "libaudiopreprocessing",
        "webrtc_audio_processing",
    ],
    header_libs: [
        "libaudioeffects",
        "libhardware_headers",
+2 −2
Original line number Diff line number Diff line
@@ -92,8 +92,8 @@ void dumpJson(int fd, const std::map<int, PerformanceData>& threadDataMap)
        (*dataJson)["threadNum"] = item.first;
        root.append(*dataJson);
    }
    Json::StyledWriter writer;
    std::string rootStr = writer.write(root);
    Json::StreamWriterBuilder factory;
    std::string rootStr = Json::writeString(factory, root);
    write(fd, rootStr.c_str(), rootStr.size());
}

+4 −0
Original line number Diff line number Diff line
@@ -21,5 +21,9 @@
namespace android {

status_t deserializeAudioPolicyFile(const char *fileName, AudioPolicyConfig *config);
// In VTS mode all vendor extensions are ignored. This is done because
// VTS tests are built using AOSP code and thus can not use vendor overlays
// of system libraries.
status_t deserializeAudioPolicyFileForVts(const char *fileName, AudioPolicyConfig *config);

} // namespace android
Loading