BUILD.gn 527 B

123456789101112131415161718192021
  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("interfaces") {
  5. sources = [
  6. "user_note_metadata_snapshot.cc",
  7. "user_note_metadata_snapshot.h",
  8. "user_note_service_delegate.h",
  9. "user_note_storage.h",
  10. "user_notes_ui.cc",
  11. "user_notes_ui.h",
  12. "user_notes_ui_delegate.h",
  13. ]
  14. deps = [
  15. "//components/user_notes/model",
  16. "//ui/gfx/geometry:geometry",
  17. "//url",
  18. ]
  19. }