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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config/ui.gni")
source_set("browser") {
sources = [
"base_bookmark_model_observer.cc",
"base_bookmark_model_observer.h",
"bookmark_client.cc",
"bookmark_client.h",
"bookmark_codec.cc",
"bookmark_codec.h",
"bookmark_expanded_state_tracker.cc",
"bookmark_expanded_state_tracker.h",
"bookmark_index.cc",
"bookmark_index.h",
"bookmark_match.cc",
"bookmark_match.h",
"bookmark_model.cc",
"bookmark_model.h",
"bookmark_model_observer.h",
"bookmark_node.cc",
"bookmark_node.h",
"bookmark_node_data.cc",
"bookmark_node_data.h",
"bookmark_node_data_ios.cc",
"bookmark_node_data_mac.cc",
"bookmark_pasteboard_helper_mac.h",
"bookmark_pasteboard_helper_mac.mm",
"bookmark_storage.cc",
"bookmark_storage.h",
"bookmark_utils.cc",
"bookmark_utils.h",
"scoped_group_bookmark_actions.cc",
"scoped_group_bookmark_actions.h",
]
deps = [
"//base",
"//components/bookmarks/common",
"//components/favicon_base",
"//components/keyed_service/core",
"//components/pref_registry",
"//components/query_parser",
"//components/startup_metric_utils",
"//components/strings",
"//net",
"//third_party/icu",
"//ui/base",
"//ui/gfx",
"//url",
]
if (toolkit_views) {
sources += [
"bookmark_node_data_views.cc",
]
}
}
source_set("unit_tests") {
testonly = true
sources = [
"bookmark_codec_unittest.cc",
"bookmark_expanded_state_tracker_unittest.cc",
"bookmark_index_unittest.cc",
"bookmark_model_unittest.cc",
"bookmark_utils_unittest.cc",
]
deps = [
":browser",
"//testing/gtest",
"//ui/base",
]
}
|