BUILD.gn 762 B

1234567891011121314151617181920212223242526272829303132333435
  1. # Copyright 2022 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("core") {
  5. sources = [
  6. "saved_tab_group.cc",
  7. "saved_tab_group.h",
  8. "saved_tab_group_tab.cc",
  9. "saved_tab_group_tab.h",
  10. ]
  11. deps = [
  12. "//base",
  13. "//components/sync",
  14. "//components/tab_groups",
  15. "//ui/gfx",
  16. "//url",
  17. ]
  18. public_deps = []
  19. }
  20. source_set("unit_tests") {
  21. testonly = true
  22. sources = [ "saved_tab_group_proto_conversion_unittest.cc" ]
  23. deps = [
  24. ":core",
  25. "//base",
  26. "//base/test:test_support",
  27. "//components/sync",
  28. "//components/sync:test_support",
  29. "//components/tab_groups",
  30. "//testing/gtest",
  31. "//url",
  32. ]
  33. }