BUILD.gn 465 B

12345678910111213141516171819202122
  1. # Copyright 2018 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. source_set("common") {
  5. sources = [
  6. "partial_circular_buffer.cc",
  7. "partial_circular_buffer.h",
  8. ]
  9. deps = [ "//base" ]
  10. }
  11. source_set("unit_tests") {
  12. testonly = true
  13. sources = [ "partial_circular_buffer_unittest.cc" ]
  14. deps = [
  15. ":common",
  16. "//base",
  17. "//testing/gtest",
  18. ]
  19. }