blob: 66ffcea1a84b7a85893c0bc8f74ca8ce180ee649 [file] [log] [blame]
Arman Ugurayd30195c2015-05-29 15:27:58 -07001#
2# Copyright (C) 2015 Google, Inc.
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
17static_library("btif") {
18 sources = [
Jakub Pawlowski713993d2016-04-21 13:16:45 -070019 "src/btif_av.cc",
Jakub Pawlowskid7a05a02016-02-22 18:04:24 -080020
21 #TODO(jpawlowski): heavily depends on Android,
Jakub Pawlowski713993d2016-04-21 13:16:45 -070022 # "src/btif_avrcp_audio_track.cc",
23 "src/btif_config.cc",
24 "src/btif_config_transcode.cc",
25 "src/btif_core.cc",
26 "src/btif_debug.cc",
27 "src/btif_debug_btsnoop.cc",
28 "src/btif_debug_conn.cc",
29 "src/btif_dm.cc",
30 "src/btif_gatt.cc",
31 "src/btif_gatt_client.cc",
32 "src/btif_gatt_multi_adv_util.cc",
33 "src/btif_gatt_server.cc",
34 "src/btif_gatt_test.cc",
35 "src/btif_gatt_util.cc",
36 "src/btif_hf.cc",
37 "src/btif_hf_client.cc",
38 "src/btif_hh.cc",
39 "src/btif_hl.cc",
40 "src/btif_mce.cc",
41 "src/btif_media_task.cc",
42 "src/btif_pan.cc",
43 "src/btif_profile_queue.cc",
44 "src/btif_rc.cc",
45 "src/btif_sdp.cc",
46 "src/btif_sdp_server.cc",
47 "src/btif_sm.cc",
48 "src/btif_sock.cc",
49 "src/btif_sock_l2cap.cc",
50 "src/btif_sock_rfc.cc",
51 "src/btif_sock_sco.cc",
52 "src/btif_sock_sdp.cc",
53 "src/btif_sock_thread.cc",
54 "src/btif_sock_util.cc",
55 "src/btif_storage.cc",
56 "src/btif_uid.cc",
57 "src/btif_util.cc",
58 "src/stack_manager.cc",
Arman Ugurayd30195c2015-05-29 15:27:58 -070059 ]
60
61 # BTIF callouts
62 sources += [
Jakub Pawlowski713993d2016-04-21 13:16:45 -070063 "co/bta_ag_co.cc",
64 "co/bta_dm_co.cc",
65 "co/bta_av_co.cc",
66 "co/bta_hh_co.cc",
67 "co/bta_hl_co.cc",
68 "co/bta_pan_co.cc",
69 "co/bta_gatts_co.cc",
Arman Ugurayd30195c2015-05-29 15:27:58 -070070 ]
71
72 include_dirs = [
73 "include",
74 "//",
75 "//audio_a2dp_hw",
76 "//bta/include",
77 "//bta/sys",
78 "//btcore/include",
79 "//embdrv/sbc/encoder/include",
Arman Ugurayd30195c2015-05-29 15:27:58 -070080 "//hci/include",
Arman Ugurayd30195c2015-05-29 15:27:58 -070081 "//stack/a2dp",
82 "//stack/btm",
83 "//stack/include",
Alain Vongsouvanh9a58e682016-03-29 17:33:55 -070084 "//third_party/tinyxml2",
Arman Ugurayd30195c2015-05-29 15:27:58 -070085 "//include",
86 "//udrv/include",
87 "//utils/include",
88 "//vnd/include",
89 ]
Arman Ugurayd30195c2015-05-29 15:27:58 -070090}