diff options
author | kkimlabs@chromium.org <kkimlabs@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-11 14:19:52 +0000 |
---|---|---|
committer | kkimlabs@chromium.org <kkimlabs@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-11 14:19:52 +0000 |
commit | 174a621f96913029748c965389706d2b32eb153b (patch) | |
tree | 53f6483025d2b4996abf854ec9fe776e6545e165 /components/enhanced_bookmarks.gypi | |
parent | 41a7fd691f089cb0f40cb88c328b3ea8313fb644 (diff) | |
download | chromium_src-174a621f96913029748c965389706d2b32eb153b.zip chromium_src-174a621f96913029748c965389706d2b32eb153b.tar.gz chromium_src-174a621f96913029748c965389706d2b32eb153b.tar.bz2 |
Local salient image storage for enhanced bookmark experiment.
BUG=368034
Review URL: https://codereview.chromium.org/259863007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@269703 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/enhanced_bookmarks.gypi')
-rw-r--r-- | components/enhanced_bookmarks.gypi | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/components/enhanced_bookmarks.gypi b/components/enhanced_bookmarks.gypi new file mode 100644 index 0000000..f34aa53 --- /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', + ], + }, + ], +} |