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

Unified Diff: components/enhanced_bookmarks.gypi

Issue 259863007: Local salient image storage for enhanced bookmark experiment. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 7 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/components_tests.gyp ('k') | components/enhanced_bookmarks/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/enhanced_bookmarks.gypi
diff --git a/components/enhanced_bookmarks.gypi b/components/enhanced_bookmarks.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..f34aa535f62e98621c8679a811e2b840445f4a14
--- /dev/null
+++ b/components/enhanced_bookmarks.gypi
@@ -0,0 +1,51 @@
+# 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.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'enhanced_bookmarks',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../sql/sql.gyp:sql',
+ '../ui/gfx/gfx.gyp:gfx',
+ '../url/url.gyp:url_lib',
+ ],
+ 'sources': [
+ 'enhanced_bookmarks/image_store.cc',
+ 'enhanced_bookmarks/image_store.h',
+ 'enhanced_bookmarks/image_store_util.cc',
+ 'enhanced_bookmarks/image_store_util.h',
+ 'enhanced_bookmarks/persistent_image_store.cc',
+ 'enhanced_bookmarks/persistent_image_store.h',
+ ],
+ 'conditions': [
+ ['OS=="ios"', {
+ 'sources!': [
+ 'enhanced_bookmarks/image_store_util.cc',
+ ],
+ }],
+ ],
+ },
+ {
+ 'target_name': 'enhanced_bookmarks_test_support',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ '../testing/gtest.gyp:gtest',
+ 'enhanced_bookmarks',
+ ],
+ 'sources': [
+ 'enhanced_bookmarks/test_image_store.cc',
+ 'enhanced_bookmarks/test_image_store.h',
+ ],
+ },
+ ],
+}
« no previous file with comments | « components/components_tests.gyp ('k') | components/enhanced_bookmarks/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698