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

Side by Side Diff: components/enhanced_bookmarks.gypi

Issue 452913002: First implementation of enhanced_bookmark_utils. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'enhanced_bookmarks', 8 'target_name': 'enhanced_bookmarks',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs': [ 10 'include_dirs': [
11 '..', 11 '..',
12 ], 12 ],
13 'dependencies': [ 13 'dependencies': [
14 '../base/base.gyp:base', 14 '../base/base.gyp:base',
15 '../sql/sql.gyp:sql', 15 '../sql/sql.gyp:sql',
16 '../ui/gfx/gfx.gyp:gfx', 16 '../ui/gfx/gfx.gyp:gfx',
17 '../url/url.gyp:url_lib', 17 '../url/url.gyp:url_lib',
18 'bookmarks_browser',
18 'enhanced_bookmarks_proto', 19 'enhanced_bookmarks_proto',
19 ], 20 ],
20 'sources': [ 21 'sources': [
22 'enhanced_bookmarks/enhanced_bookmark_utils.cc',
23 'enhanced_bookmarks/enhanced_bookmark_utils.h',
21 'enhanced_bookmarks/image_store.cc', 24 'enhanced_bookmarks/image_store.cc',
22 'enhanced_bookmarks/image_store.h', 25 'enhanced_bookmarks/image_store.h',
23 'enhanced_bookmarks/image_store_util.cc', 26 'enhanced_bookmarks/image_store_util.cc',
24 'enhanced_bookmarks/image_store_util.h', 27 'enhanced_bookmarks/image_store_util.h',
25 'enhanced_bookmarks/image_store_util_ios.mm', 28 'enhanced_bookmarks/image_store_util_ios.mm',
26 'enhanced_bookmarks/metadata_accessor.cc', 29 'enhanced_bookmarks/metadata_accessor.cc',
27 'enhanced_bookmarks/metadata_accessor.h', 30 'enhanced_bookmarks/metadata_accessor.h',
28 'enhanced_bookmarks/persistent_image_store.cc', 31 'enhanced_bookmarks/persistent_image_store.cc',
29 'enhanced_bookmarks/persistent_image_store.h', 32 'enhanced_bookmarks/persistent_image_store.h',
30 ], 33 ],
(...skipping 27 matching lines...) Expand all
58 'enhanced_bookmarks/proto/metadata.proto', 61 'enhanced_bookmarks/proto/metadata.proto',
59 ], 62 ],
60 'variables': { 63 'variables': {
61 'proto_in_dir': './enhanced_bookmarks/proto', 64 'proto_in_dir': './enhanced_bookmarks/proto',
62 'proto_out_dir': 'components/enhanced_bookmarks/proto', 65 'proto_out_dir': 'components/enhanced_bookmarks/proto',
63 }, 66 },
64 'includes': [ '../build/protoc.gypi' ], 67 'includes': [ '../build/protoc.gypi' ],
65 }, 68 },
66 ], 69 ],
67 } 70 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698