blob: e918a1d73475924c6cff87c40ec3643ff318415d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 2022 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
source_set("interfaces") {
sources = [
"user_note_metadata_snapshot.cc",
"user_note_metadata_snapshot.h",
"user_note_service_delegate.h",
"user_note_storage.h",
"user_notes_ui.cc",
"user_notes_ui.h",
"user_notes_ui_delegate.h",
]
deps = [
"//components/user_notes/model",
"//ui/gfx/geometry:geometry",
"//url",
]
}
|