BUILD.gn 803 B

12345678910111213141516171819202122232425262728
  1. # Copyright 2016 The Chromium Authors. All rights reserved.
  2. # Use of this source code is governed by a BSD-style license that can be
  3. # found in the LICENSE file.
  4. import("//tools/generate_library_loader/generate_library_loader.gni")
  5. generate_library_loader("libbrlapi") {
  6. name = "LibBrlapiLoader"
  7. output_h = "libbrlapi.h"
  8. output_cc = "libbrlapi_loader.cc"
  9. header = "<brlapi.h>"
  10. bundled_header = "\"third_party/libbrlapi/brlapi.h\""
  11. functions = [
  12. "brlapi_getHandleSize",
  13. "brlapi_error_location",
  14. "brlapi_strerror",
  15. "brlapi__acceptKeys",
  16. "brlapi__openConnection",
  17. "brlapi__closeConnection",
  18. "brlapi__getDisplaySize",
  19. "brlapi__enterTtyModeWithPath",
  20. "brlapi__leaveTtyMode",
  21. "brlapi__writeDots",
  22. "brlapi__readKey",
  23. "brlapi__getParameter",
  24. ]
  25. }