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

Side by Side Diff: components/enhanced_bookmarks.gypi

Issue 539173004: Bring up of the enhanced bookmarks cluster service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@intermediary2
Patch Set: micro-nit Created 6 years, 2 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 | « chrome/chrome_browser.gypi ('k') | components/enhanced_bookmarks/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 '../google_apis/google_apis.gyp:google_apis', 15 '../google_apis/google_apis.gyp:google_apis',
16 '../net/net.gyp:net', 16 '../net/net.gyp:net',
17 '../sql/sql.gyp:sql', 17 '../sql/sql.gyp:sql',
18 '../ui/gfx/gfx.gyp:gfx', 18 '../ui/gfx/gfx.gyp:gfx',
19 '../url/url.gyp:url_lib', 19 '../url/url.gyp:url_lib',
20 'bookmarks_browser', 20 'bookmarks_browser',
21 'enhanced_bookmarks_proto', 21 'enhanced_bookmarks_proto',
22 'keyed_service_core', 22 'keyed_service_core',
23 'signin_core_browser', 23 'signin_core_browser',
24 ], 24 ],
25 'sources': [ 25 'sources': [
26 'enhanced_bookmarks/bookmark_image_service.cc', 26 'enhanced_bookmarks/bookmark_image_service.cc',
27 'enhanced_bookmarks/bookmark_image_service.h', 27 'enhanced_bookmarks/bookmark_image_service.h',
28 'enhanced_bookmarks/bookmark_server_cluster_service.cc',
29 'enhanced_bookmarks/bookmark_server_cluster_service.h',
28 'enhanced_bookmarks/bookmark_server_search_service.cc', 30 'enhanced_bookmarks/bookmark_server_search_service.cc',
29 'enhanced_bookmarks/bookmark_server_search_service.h', 31 'enhanced_bookmarks/bookmark_server_search_service.h',
30 'enhanced_bookmarks/bookmark_server_service.cc', 32 'enhanced_bookmarks/bookmark_server_service.cc',
31 'enhanced_bookmarks/bookmark_server_service.h', 33 'enhanced_bookmarks/bookmark_server_service.h',
32 'enhanced_bookmarks/enhanced_bookmark_model.cc', 34 'enhanced_bookmarks/enhanced_bookmark_model.cc',
33 'enhanced_bookmarks/enhanced_bookmark_model.h', 35 'enhanced_bookmarks/enhanced_bookmark_model.h',
34 'enhanced_bookmarks/enhanced_bookmark_model_observer.h', 36 'enhanced_bookmarks/enhanced_bookmark_model_observer.h',
35 'enhanced_bookmarks/enhanced_bookmark_utils.cc', 37 'enhanced_bookmarks/enhanced_bookmark_utils.cc',
36 'enhanced_bookmarks/enhanced_bookmark_utils.h', 38 'enhanced_bookmarks/enhanced_bookmark_utils.h',
37 'enhanced_bookmarks/image_store.cc', 39 'enhanced_bookmarks/image_store.cc',
38 'enhanced_bookmarks/image_store.h', 40 'enhanced_bookmarks/image_store.h',
39 'enhanced_bookmarks/image_store_util.cc', 41 'enhanced_bookmarks/image_store_util.cc',
40 'enhanced_bookmarks/image_store_util.h', 42 'enhanced_bookmarks/image_store_util.h',
41 'enhanced_bookmarks/image_store_util_ios.mm', 43 'enhanced_bookmarks/image_store_util_ios.mm',
42 'enhanced_bookmarks/item_position.cc', 44 'enhanced_bookmarks/item_position.cc',
43 'enhanced_bookmarks/item_position.h', 45 'enhanced_bookmarks/item_position.h',
44 'enhanced_bookmarks/metadata_accessor.cc', 46 'enhanced_bookmarks/metadata_accessor.cc',
45 'enhanced_bookmarks/metadata_accessor.h', 47 'enhanced_bookmarks/metadata_accessor.h',
46 'enhanced_bookmarks/persistent_image_store.cc', 48 'enhanced_bookmarks/persistent_image_store.cc',
47 'enhanced_bookmarks/persistent_image_store.h', 49 'enhanced_bookmarks/persistent_image_store.h',
50 'enhanced_bookmarks/pref_names.cc',
51 'enhanced_bookmarks/pref_names.h',
48 ], 52 ],
49 'conditions': [ 53 'conditions': [
50 ['OS=="ios"', { 54 ['OS=="ios"', {
51 'sources!': [ 55 'sources!': [
52 'enhanced_bookmarks/image_store_util.cc', 56 'enhanced_bookmarks/image_store_util.cc',
53 ], 57 ],
54 }], 58 }],
55 ], 59 ],
56 }, 60 },
57 { 61 {
58 'target_name': 'enhanced_bookmarks_test_support', 62 'target_name': 'enhanced_bookmarks_test_support',
59 'type': 'static_library', 63 'type': 'static_library',
60 'include_dirs': [ 64 'include_dirs': [
61 '..', 65 '..',
62 ], 66 ],
63 'dependencies': [ 67 'dependencies': [
64 '../testing/gtest.gyp:gtest', 68 '../testing/gtest.gyp:gtest',
65 'enhanced_bookmarks', 69 'enhanced_bookmarks',
66 ], 70 ],
67 'sources': [ 71 'sources': [
68 'enhanced_bookmarks/test_image_store.cc', 72 'enhanced_bookmarks/test_image_store.cc',
69 'enhanced_bookmarks/test_image_store.h', 73 'enhanced_bookmarks/test_image_store.h',
70 ], 74 ],
71 }, 75 },
72 { 76 {
73 'target_name': 'enhanced_bookmarks_proto', 77 'target_name': 'enhanced_bookmarks_proto',
74 'type': 'static_library', 78 'type': 'static_library',
75 'sources': [ 79 'sources': [
80 'enhanced_bookmarks/proto/cluster.proto',
76 'enhanced_bookmarks/proto/metadata.proto', 81 'enhanced_bookmarks/proto/metadata.proto',
77 'enhanced_bookmarks/proto/search.proto', 82 'enhanced_bookmarks/proto/search.proto',
78 ], 83 ],
79 'variables': { 84 'variables': {
80 'proto_in_dir': './enhanced_bookmarks/proto', 85 'proto_in_dir': './enhanced_bookmarks/proto',
81 'proto_out_dir': 'components/enhanced_bookmarks/proto', 86 'proto_out_dir': 'components/enhanced_bookmarks/proto',
82 }, 87 },
83 'includes': [ '../build/protoc.gypi' ], 88 'includes': [ '../build/protoc.gypi' ],
84 }, 89 },
85 ], 90 ],
86 } 91 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/enhanced_bookmarks/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698