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

Unified 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: android fix 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/BUILD.gn ('k') | components/bookmarks/common/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/bookmarks/browser/BUILD.gn
diff --git a/components/bookmarks/browser/BUILD.gn b/components/bookmarks/browser/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..f6b4db252fe82b95ac4b3a97797865772b58af37
--- /dev/null
+++ b/components/bookmarks/browser/BUILD.gn
@@ -0,0 +1,61 @@
+# 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",
+ "//net",
+ "//third_party/icu",
+ "//ui/base",
+ "//ui/gfx",
+ "//url",
+ "//components/bookmarks/common",
+ "//components/strings",
+ "//components/favicon_base",
+ "//components/keyed_service/core",
+ "//components/pref_registry",
+ "//components/query_parser",
+ "//components/startup_metric_utils",
+ ]
+
+ if (toolkit_views) {
+ sources += [
+ "bookmark_node_data_views.cc",
+ ]
+ }
+}
« no previous file with comments | « components/BUILD.gn ('k') | components/bookmarks/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698