Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(542)

Side by Side Diff: components/bookmarks/browser/BUILD.gn

Issue 361373002: components: Add bookmarks to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright 2014 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
5 source_set("browser") {
6 sources = [
7 "base_bookmark_model_observer.cc",
8 "base_bookmark_model_observer.h",
9 "bookmark_client.cc",
10 "bookmark_client.h",
11 "bookmark_codec.cc",
12 "bookmark_codec.h",
13 "bookmark_expanded_state_tracker.cc",
14 "bookmark_expanded_state_tracker.h",
15 "bookmark_index.cc",
16 "bookmark_index.h",
17 "bookmark_match.cc",
18 "bookmark_match.h",
19 "bookmark_model.cc",
20 "bookmark_model.h",
21 "bookmark_model_observer.h",
22 "bookmark_node.cc",
23 "bookmark_node.h",
24 "bookmark_node_data.cc",
25 "bookmark_node_data.h",
26 "bookmark_node_data_ios.cc",
27 "bookmark_node_data_mac.cc",
28 "bookmark_node_data_views.cc",
29 "bookmark_pasteboard_helper_mac.h",
30 "bookmark_pasteboard_helper_mac.mm",
31 "bookmark_storage.cc",
32 "bookmark_storage.h",
33 "bookmark_utils.cc",
34 "bookmark_utils.h",
35 "scoped_group_bookmark_actions.cc",
36 "scoped_group_bookmark_actions.h",
37 ]
38
39 deps = [
40 "//base",
41 "//net",
42 "//third_party/icu",
43 "//ui/base",
44 "//ui/gfx",
45 "//url",
46 "//components/bookmarks/common",
47 "//components/strings",
48 "//components/favicon_base",
49 "//components/keyed_service/core",
50 "//components/pref_registry",
51 "//components/query_parser",
52 "//components/startup_metric_utils",
53 ]
54 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698