BUILD.gn 1.5 KB

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