xref: /aosp_15_r20/external/walt/android/WALT/app/src/main/jni/Android.bp (revision bf47c6829f95be9dd55f4c5bbc44a71c90aad403)
1// Copyright (C) 2015 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//      http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14//
15
16package {
17    // See: http://go/android-license-faq
18    default_applicable_licenses: [
19        "Android-Apache-2.0",
20    ],
21}
22
23cc_library_shared {
24    name: "sync_clock_jni",
25    srcs: [
26        "sync_clock_jni.c",
27        "sync_clock.c",
28        "player.c",
29    ],
30    cflags: [
31        "-g",
32        "-DUSE_LIBLOG",
33        "-Werror",
34        "-Wno-deprecated-declarations",
35    ],
36    shared_libs: [
37        "libOpenSLES",
38        "liblog",
39    ],
40}
41