Arman Uguray | d30195c | 2015-05-29 15:27:58 -0700 | [diff] [blame] | 1 | # |
| 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 | |
| 17 | static_library("btif") { |
| 18 | sources = [ |
| 19 | "src/btif_av.c", |
Jakub Pawlowski | d7a05a0 | 2016-02-22 18:04:24 -0800 | [diff] [blame] | 20 | |
| 21 | #TODO(jpawlowski): heavily depends on Android, |
| 22 | # "src/btif_avrcp_audio_track.cpp", |
Arman Uguray | d30195c | 2015-05-29 15:27:58 -0700 | [diff] [blame] | 23 | "src/btif_config.c", |
Bluetooth Build Test | b4a42e7 | 2016-04-07 14:10:40 +0200 | [diff] [blame] | 24 | "src/btif_config_transcode.cpp", |
Arman Uguray | d30195c | 2015-05-29 15:27:58 -0700 | [diff] [blame] | 25 | "src/btif_core.c", |
Arman Uguray | 625ec34 | 2015-06-10 16:21:12 -0700 | [diff] [blame] | 26 | "src/btif_debug.c", |
| 27 | "src/btif_debug_btsnoop.c", |
| 28 | "src/btif_debug_conn.c", |
Arman Uguray | d30195c | 2015-05-29 15:27:58 -0700 | [diff] [blame] | 29 | "src/btif_dm.c", |
| 30 | "src/btif_gatt.c", |
| 31 | "src/btif_gatt_client.c", |
| 32 | "src/btif_gatt_multi_adv_util.c", |
| 33 | "src/btif_gatt_server.c", |
| 34 | "src/btif_gatt_test.c", |
| 35 | "src/btif_gatt_util.c", |
| 36 | "src/btif_hf.c", |
| 37 | "src/btif_hf_client.c", |
| 38 | "src/btif_hh.c", |
| 39 | "src/btif_hl.c", |
| 40 | "src/btif_mce.c", |
| 41 | "src/btif_media_task.c", |
| 42 | "src/btif_pan.c", |
| 43 | "src/btif_profile_queue.c", |
| 44 | "src/btif_rc.c", |
| 45 | "src/btif_sdp.c", |
| 46 | "src/btif_sdp_server.c", |
| 47 | "src/btif_sm.c", |
| 48 | "src/btif_sock.c", |
| 49 | "src/btif_sock_l2cap.c", |
| 50 | "src/btif_sock_rfc.c", |
| 51 | "src/btif_sock_sco.c", |
| 52 | "src/btif_sock_sdp.c", |
| 53 | "src/btif_sock_thread.c", |
| 54 | "src/btif_sock_util.c", |
| 55 | "src/btif_storage.c", |
Adam Lesinski | 0620f97 | 2015-12-02 22:15:08 -0800 | [diff] [blame] | 56 | "src/btif_uid.c", |
Arman Uguray | d30195c | 2015-05-29 15:27:58 -0700 | [diff] [blame] | 57 | "src/btif_util.c", |
| 58 | "src/stack_manager.c", |
| 59 | ] |
| 60 | |
| 61 | # BTIF callouts |
| 62 | sources += [ |
| 63 | "co/bta_ag_co.c", |
| 64 | "co/bta_dm_co.c", |
| 65 | "co/bta_av_co.c", |
| 66 | "co/bta_hh_co.c", |
| 67 | "co/bta_hl_co.c", |
| 68 | "co/bta_pan_co.c", |
Arman Uguray | d30195c | 2015-05-29 15:27:58 -0700 | [diff] [blame] | 69 | "co/bta_gatts_co.c", |
| 70 | ] |
| 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 Uguray | d30195c | 2015-05-29 15:27:58 -0700 | [diff] [blame] | 80 | "//hci/include", |
Arman Uguray | d30195c | 2015-05-29 15:27:58 -0700 | [diff] [blame] | 81 | "//stack/a2dp", |
| 82 | "//stack/btm", |
| 83 | "//stack/include", |
Alain Vongsouvanh | 9a58e68 | 2016-03-29 17:33:55 -0700 | [diff] [blame] | 84 | "//third_party/tinyxml2", |
Arman Uguray | d30195c | 2015-05-29 15:27:58 -0700 | [diff] [blame] | 85 | "//include", |
| 86 | "//udrv/include", |
| 87 | "//utils/include", |
| 88 | "//vnd/include", |
| 89 | ] |
Arman Uguray | d30195c | 2015-05-29 15:27:58 -0700 | [diff] [blame] | 90 | } |