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 17package { 18 // See: http://go/android-license-faq 19 // A large-scale-change added 'default_applicable_licenses' to import 20 // all of the 'license_kinds' from "system_chre_license" 21 // to get the below license kinds: 22 // SPDX-license-identifier-Apache-2.0 23 default_applicable_licenses: ["system_chre_license"], 24} 25 26cc_library_static { 27 name: "wifi_offload_types", 28 export_include_dirs: [ 29 "include", 30 ], 31 srcs: [ 32 "channel_histogram.cc", 33 "flatbuffers_serialization.cc", 34 "preferred_network.cc", 35 "rpc_log_record.cc", 36 "scan_config.cc", 37 "scan_filter.cc", 38 "scan_params.cc", 39 "scan_record.cc", 40 "scan_result.cc", 41 "scan_result_message.cc", 42 "scan_stats.cc", 43 "ssid.cc", 44 "utility.cc", 45 ], 46 cflags: [ 47 "-Wall", 48 "-Werror", 49 ], 50 shared_libs: [ 51 "libcutils", 52 "liblog", 53 "libutils", 54 ], 55 header_libs: [ 56 "chre_flatbuffers", 57 "chre_api", 58 ], 59 export_header_lib_headers: [ 60 "chre_flatbuffers", 61 "chre_api", 62 ], 63 vendor: true, 64 proprietary: true, 65} 66