BUILD.gn 760 B

123456789101112131415161718192021222324252627
  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. config("libsecret_config") {
  5. include_dirs = [ rebase_path("./") ]
  6. }
  7. static_library("libsecret") {
  8. sources = [
  9. "libsecret/secret-attributes.h",
  10. "libsecret/secret-collection.h",
  11. "libsecret/secret-enum-types.h",
  12. "libsecret/secret-item.h",
  13. "libsecret/secret-password.h",
  14. "libsecret/secret-paths.h",
  15. "libsecret/secret-prompt.h",
  16. "libsecret/secret-schema.h",
  17. "libsecret/secret-schemas.h",
  18. "libsecret/secret-service.h",
  19. "libsecret/secret-types.h",
  20. "libsecret/secret-value.h",
  21. "libsecret/secret.h",
  22. ]
  23. public_configs = [ ":libsecret_config" ]
  24. }