summaryrefslogtreecommitdiff
path: root/chromium/components/user_notes/model/BUILD.gn
blob: d7e54eed8add3555310368ee4f79a184e4a2ab3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# 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.

static_library("model") {
  sources = [
    "user_note.cc",
    "user_note.h",
    "user_note_body.cc",
    "user_note_body.h",
    "user_note_metadata.cc",
    "user_note_metadata.h",
    "user_note_target.cc",
    "user_note_target.h",
  ]

  deps = [
    "//base",
    "//url",
  ]
}

source_set("unit_tests") {
  testonly = true
  sources = [
    "user_note_model_test_utils.cc",
    "user_note_model_test_utils.h",
  ]

  deps = [
    ":model",
    "//base",
  ]
}