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

Unified Diff: components/bookmarks_enhanced.gypi

Issue 259863007: Local salient image storage for enhanced bookmark experiment. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: revert test 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 | « no previous file | components/bookmarks_enhanced/DEPS » ('j') | components/components_tests.gyp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/bookmarks_enhanced.gypi
diff --git a/components/bookmarks_enhanced.gypi b/components/bookmarks_enhanced.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..067f58e58cd620fde4e238e2fde5eefc170cc065
--- /dev/null
+++ b/components/bookmarks_enhanced.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': 'bookmarks_enhanced',
blundell 2014/05/09 08:17:48 Nit: out of curiosity, why bookmarks_enhanced inst
Kibeom Kim (inactive) 2014/05/09 09:44:41 Done.
+ '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': [
+ 'bookmarks_enhanced/image_store.cc',
+ 'bookmarks_enhanced/image_store.h',
+ 'bookmarks_enhanced/image_store_util.cc',
+ 'bookmarks_enhanced/image_store_util.h',
+ 'bookmarks_enhanced/persistent_image_store.cc',
+ 'bookmarks_enhanced/persistent_image_store.h',
+ ],
+ 'conditions': [
+ ['OS=="ios"', {
+ 'sources!': [
+ 'bookmarks_enhanced/image_store_util.cc',
blundell 2014/05/09 08:17:48 nit: If this is just for Android and iOS, should t
Kibeom Kim (inactive) 2014/05/09 09:44:41 image_store_util.cc itself is not Android specific
+ ],
+ }],
+ ],
+ },
+ {
+ 'target_name': 'bookmarks_enhanced_test_support',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ '../testing/gtest.gyp:gtest',
+ 'bookmarks_enhanced',
+ ],
+ 'sources': [
+ 'bookmarks_enhanced/test_image_store.cc',
+ 'bookmarks_enhanced/test_image_store.h',
+ ],
+ },
+ ],
+}
« no previous file with comments | « no previous file | components/bookmarks_enhanced/DEPS » ('j') | components/components_tests.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698