BUILD.gn 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # Copyright 2021 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. static_library("nigori") {
  5. sources = [
  6. "cryptographer_impl.cc",
  7. "cryptographer_impl.h",
  8. "keystore_keys_cryptographer.cc",
  9. "keystore_keys_cryptographer.h",
  10. "nigori_key_bag.cc",
  11. "nigori_key_bag.h",
  12. "nigori_local_change_processor.cc",
  13. "nigori_local_change_processor.h",
  14. "nigori_model_type_processor.cc",
  15. "nigori_model_type_processor.h",
  16. "nigori_state.cc",
  17. "nigori_state.h",
  18. "nigori_storage.h",
  19. "nigori_storage_impl.cc",
  20. "nigori_storage_impl.h",
  21. "nigori_sync_bridge.h",
  22. "nigori_sync_bridge_impl.cc",
  23. "nigori_sync_bridge_impl.h",
  24. "pending_local_nigori_commit.cc",
  25. "pending_local_nigori_commit.h",
  26. ]
  27. deps = [ "//components/os_crypt" ]
  28. public_deps = [
  29. "//base",
  30. "//components/sync/base",
  31. "//components/sync/engine",
  32. "//components/sync/model",
  33. "//components/sync/protocol",
  34. ]
  35. configs += [ "//build/config/compiler:wexit_time_destructors" ]
  36. }