Home | History | Annotate | Download | only in wifi_offload
      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 
     17 cc_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     shared_libs: [
     38         "libcutils",
     39         "liblog",
     40         "libutils",
     41     ],
     42     header_libs: [
     43         "chre_flatbuffers",
     44         "chre_api",
     45     ],
     46     export_header_lib_headers: [
     47         "chre_flatbuffers",
     48         "chre_api",
     49     ],
     50     vendor: true,
     51     proprietary: true,
     52 }