blob: 37d6ca49446ecd37810b40c890c2cb2d2e58b321 [file] [log] [blame]
Jakub Pawlowski9e814612018-05-25 09:31:26 -07001#
2# Copyright 2018 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
17static_library("packet") {
18 sources = [
19 "avrcp/get_folder_items.cc",
20 "avrcp/register_notification_packet.cc",
21 "avrcp/change_path.cc",
22 "avrcp/get_total_number_of_items.cc",
23 "avrcp/capabilities_packet.cc",
24 "avrcp/pass_through_packet.cc",
25 "avrcp/set_browsed_player.cc",
26 "avrcp/avrcp_reject_packet.cc",
27 "avrcp/set_absolute_volume.cc",
28 "avrcp/avrcp_packet.cc",
29 "avrcp/get_element_attributes_packet.cc",
30 "avrcp/get_play_status_packet.cc",
31 "avrcp/general_reject_packet.cc",
32 "avrcp/avrcp_browse_packet.cc",
33 "avrcp/get_item_attributes.cc",
34 "avrcp/play_item.cc",
35 "avrcp/vendor_packet.cc",
36 "avrcp/set_addressed_player.cc",
37 "base/iterator.cc",
38 "base/packet.cc",
39 "base/packet_builder.cc",
40 ]
41
42 include_dirs = [
43 "//",
44 "//internal_include",
45 "//stack/include",
46 "//profile/avrcp",
47 ]
48
49 deps = [
50 "//third_party/libchrome:base"
51 ]
52}