1// Copyright 2013 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
15package {
16    default_team: "trendy_team_camera_framework",
17    // See: http://go/android-license-faq
18    default_applicable_licenses: [
19        "frameworks_av_camera_license",
20    ],
21}
22
23cc_test {
24    name: "camera_client_test",
25    srcs: [
26        "VendorTagDescriptorTests.cpp",
27        "CameraBinderTests.cpp",
28        "CameraZSLTests.cpp",
29        "CameraCharacteristicsPermission.cpp",
30    ],
31    shared_libs: [
32        "liblog",
33        "libutils",
34        "libcutils",
35        "libcamera_metadata",
36        "libcamera_client",
37        "libgui",
38        "libsync",
39        "libui",
40        "libdl",
41        "libbinder",
42    ],
43    include_dirs: [
44        "system/media/private/camera/include",
45        "system/media/camera/tests",
46        "frameworks/av/services/camera/libcameraservice",
47    ],
48    cflags: [
49        "-Wall",
50        "-Wextra",
51        "-Werror",
52    ],
53}
54