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

Side by Side 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: rebase + compiler error fixes on windows and ios 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 unified diff | Download patch
« no previous file with comments | « no previous file | components/bookmarks_enhanced/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'bookmarks_enhanced',
9 'type': 'static_library',
10 'include_dirs': [
11 '..',
12 ],
13 'dependencies': [
14 '../base/base.gyp:base',
15 '../sql/sql.gyp:sql',
16 '../ui/gfx/gfx.gyp:gfx',
17 '../url/url.gyp:url_lib',
18 ],
19 'sources': [
20 'bookmarks_enhanced/image_store.cc',
21 'bookmarks_enhanced/image_store.h',
22 'bookmarks_enhanced/image_store_util.cc',
23 'bookmarks_enhanced/image_store_util.h',
24 'bookmarks_enhanced/persistent_image_store.cc',
25 'bookmarks_enhanced/persistent_image_store.h',
26 ],
27 'conditions': [
28 ['OS=="ios"', {
29 'sources!': [
30 'bookmarks_enhanced/image_store_util.cc',
31 ],
32 }],
33 ],
34 },
35 {
36 'target_name': 'bookmarks_enhanced_test_support',
37 'type': 'static_library',
38 'include_dirs': [
39 '..',
40 ],
41 'dependencies': [
42 '../testing/gtest.gyp:gtest',
43 'bookmarks_enhanced',
44 ],
45 'sources': [
46 'bookmarks_enhanced/image_store_unittest.cc',
tfarina 2014/05/08 19:57:19 No. The unittest.cc goes into the components_unitt
Kibeom Kim (inactive) 2014/05/08 20:02:03 Oh, I see. Done.
47 'bookmarks_enhanced/test_image_store.cc',
48 'bookmarks_enhanced/test_image_store.h',
49 ],
50 'conditions': [
51 ['OS=="ios"', {
52 'sources!': [
53 'bookmarks_enhanced/image_store_unittest.cc',
54 ],
55 }],
56 ],
57 },
58 ],
59 }
OLDNEW
« no previous file with comments | « no previous file | components/bookmarks_enhanced/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698