1/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17cc_library_static {
18    name: "wifi_offload_types",
19    export_include_dirs: [
20        "include",
21    ],
22    srcs: [
23        "channel_histogram.cc",
24        "flatbuffers_serialization.cc",
25        "preferred_network.cc",
26        "rpc_log_record.cc",
27        "scan_config.cc",
28        "scan_filter.cc",
29        "scan_params.cc",
30        "scan_record.cc",
31        "scan_result.cc",
32        "scan_result_message.cc",
33        "scan_stats.cc",
34        "ssid.cc",
35        "utility.cc",
36    ],
37    cflags: [
38        "-Wall",
39        "-Werror",
40    ],
41    shared_libs: [
42        "libcutils",
43        "liblog",
44        "libutils",
45    ],
46    header_libs: [
47        "chre_flatbuffers",
48        "chre_api",
49    ],
50    export_header_lib_headers: [
51        "chre_flatbuffers",
52        "chre_api",
53    ],
54    vendor: true,
55    proprietary: true,
56}
57