| # 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", |
| ] |
| } |