summaryrefslogtreecommitdiffstats
path: root/components/enhanced_bookmarks/BUILD.gn
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-15 19:20:06 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-15 19:20:06 +0000
commit5dce66d1349da2adf1111fe6e6301bcb1c0a889e (patch)
tree723eb20c41cff54fd08c062a79e5492aa15c9d27 /components/enhanced_bookmarks/BUILD.gn
parent47874b4746dd7d39e7c40545ae855677c08ed29e (diff)
downloadchromium_src-5dce66d1349da2adf1111fe6e6301bcb1c0a889e.zip
chromium_src-5dce66d1349da2adf1111fe6e6301bcb1c0a889e.tar.gz
chromium_src-5dce66d1349da2adf1111fe6e6301bcb1c0a889e.tar.bz2
components: Add GN build files for three more components.
This patch adds BUILD files for: - enhanced_bookmarks - leveldb_proto - omaha_query_params BUG=None TEST=gn gen out/Debug_gn && ninja -C out/Debug_gn R=brettw@chromium.org TBR=jochen@chromium.org Review URL: https://codereview.chromium.org/391603002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@283234 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/enhanced_bookmarks/BUILD.gn')
-rw-r--r--components/enhanced_bookmarks/BUILD.gn45
1 files changed, 45 insertions, 0 deletions
diff --git a/components/enhanced_bookmarks/BUILD.gn b/components/enhanced_bookmarks/BUILD.gn
new file mode 100644
index 0000000..1cb9ef5
--- /dev/null
+++ b/components/enhanced_bookmarks/BUILD.gn
@@ -0,0 +1,45 @@
+# 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.
+
+source_set("enhanced_bookmarks") {
+ sources = [
+ "image_store.cc",
+ "image_store.h",
+ "image_store_util.cc",
+ "image_store_util.h",
+ "image_store_util_ios.mm",
+ "metadata_accessor.cc",
+ "metadata_accessor.h",
+ "persistent_image_store.cc",
+ "persistent_image_store.h",
+ ]
+
+ deps = [
+ "//base",
+ "//components/bookmarks/browser",
+ "//components/enhanced_bookmarks/proto",
+ "//sql",
+ "//ui/gfx",
+ "//url",
+ ]
+
+ if (is_ios) {
+ sources -= [
+ "image_store_util.cc",
+ ]
+ }
+}
+
+source_set("test_support") {
+ sources = [
+ "test_image_store.cc",
+ "test_image_store.h",
+ ]
+
+ deps = [
+ ":enhanced_bookmarks",
+ "//skia",
+ "//testing/gtest",
+ ]
+}