BUILD.gn 578 B

12345678910111213141516171819202122232425
  1. # Copyright 2019 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("tab_groups") {
  5. sources = [
  6. "tab_group_color.cc",
  7. "tab_group_color.h",
  8. "tab_group_id.cc",
  9. "tab_group_id.h",
  10. "tab_group_visual_data.cc",
  11. "tab_group_visual_data.h",
  12. ]
  13. defines = [ "IS_TAB_GROUPS_IMPL" ]
  14. deps = [
  15. "//base",
  16. "//components/strings",
  17. "//components/tab_groups/public/mojom:mojo_bindings_webui_js",
  18. "//skia",
  19. "//ui/base",
  20. "//ui/gfx",
  21. ]
  22. }