BUILD.gn 871 B

12345678910111213141516171819202122232425262728293031323334
  1. # Copyright 2015 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("public") {
  5. sources = [
  6. "ack_handle.cc",
  7. "ack_handle.h",
  8. "ack_handler.h",
  9. "identity_provider.cc",
  10. "identity_provider.h",
  11. "invalidation.cc",
  12. "invalidation.h",
  13. "invalidation_export.h",
  14. "invalidation_handler.cc",
  15. "invalidation_handler.h",
  16. "invalidation_service.h",
  17. "invalidation_util.cc",
  18. "invalidation_util.h",
  19. "invalidator_state.cc",
  20. "invalidator_state.h",
  21. "single_topic_invalidation_set.cc",
  22. "single_topic_invalidation_set.h",
  23. "topic_data.cc",
  24. "topic_data.h",
  25. "topic_invalidation_map.cc",
  26. "topic_invalidation_map.h",
  27. ]
  28. public_deps = [ "//google_apis" ]
  29. deps = [
  30. "//base",
  31. "//base:i18n",
  32. ]
  33. }