BUILD.gn 672 B

1234567891011121314151617181920212223242526272829303132
  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. component("device_event_log") {
  5. sources = [
  6. "device_event_log.cc",
  7. "device_event_log.h",
  8. "device_event_log_impl.cc",
  9. "device_event_log_impl.h",
  10. ]
  11. defines = [ "DEVICE_EVENT_LOG_IMPLEMENTATION" ]
  12. deps = [
  13. "//base",
  14. "//third_party/icu",
  15. ]
  16. }
  17. source_set("unit_tests") {
  18. testonly = true
  19. sources = [ "device_event_log_impl_unittest.cc" ]
  20. deps = [
  21. ":device_event_log",
  22. "//base",
  23. "//base/test:test_support",
  24. "//testing/gtest",
  25. "//third_party/icu",
  26. ]
  27. }