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

Side by Side Diff: components/enhanced_bookmarks.gypi

Issue 641473002: Revert of Bring up of the enhanced bookmarks cluster service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@intermediary2
Patch Set: 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',
30 'enhanced_bookmarks/bookmark_server_search_service.cc', 28 'enhanced_bookmarks/bookmark_server_search_service.cc',
31 'enhanced_bookmarks/bookmark_server_search_service.h', 29 'enhanced_bookmarks/bookmark_server_search_service.h',
32 'enhanced_bookmarks/bookmark_server_service.cc', 30 'enhanced_bookmarks/bookmark_server_service.cc',
33 'enhanced_bookmarks/bookmark_server_service.h', 31 'enhanced_bookmarks/bookmark_server_service.h',
34 'enhanced_bookmarks/enhanced_bookmark_model.cc', 32 'enhanced_bookmarks/enhanced_bookmark_model.cc',
35 'enhanced_bookmarks/enhanced_bookmark_model.h', 33 'enhanced_bookmarks/enhanced_bookmark_model.h',
36 'enhanced_bookmarks/enhanced_bookmark_model_observer.h', 34 'enhanced_bookmarks/enhanced_bookmark_model_observer.h',
37 'enhanced_bookmarks/enhanced_bookmark_utils.cc', 35 'enhanced_bookmarks/enhanced_bookmark_utils.cc',
38 'enhanced_bookmarks/enhanced_bookmark_utils.h', 36 'enhanced_bookmarks/enhanced_bookmark_utils.h',
39 'enhanced_bookmarks/image_store.cc', 37 'enhanced_bookmarks/image_store.cc',
40 'enhanced_bookmarks/image_store.h', 38 'enhanced_bookmarks/image_store.h',
41 'enhanced_bookmarks/image_store_util.cc', 39 'enhanced_bookmarks/image_store_util.cc',
42 'enhanced_bookmarks/image_store_util.h', 40 'enhanced_bookmarks/image_store_util.h',
43 'enhanced_bookmarks/image_store_util_ios.mm', 41 'enhanced_bookmarks/image_store_util_ios.mm',
44 'enhanced_bookmarks/item_position.cc', 42 'enhanced_bookmarks/item_position.cc',
45 'enhanced_bookmarks/item_position.h', 43 'enhanced_bookmarks/item_position.h',
46 'enhanced_bookmarks/metadata_accessor.cc', 44 'enhanced_bookmarks/metadata_accessor.cc',
47 'enhanced_bookmarks/metadata_accessor.h', 45 'enhanced_bookmarks/metadata_accessor.h',
48 'enhanced_bookmarks/persistent_image_store.cc', 46 'enhanced_bookmarks/persistent_image_store.cc',
49 'enhanced_bookmarks/persistent_image_store.h', 47 'enhanced_bookmarks/persistent_image_store.h',
50 'enhanced_bookmarks/pref_names.cc',
51 'enhanced_bookmarks/pref_names.h',
52 ], 48 ],
53 'conditions': [ 49 'conditions': [
54 ['OS=="ios"', { 50 ['OS=="ios"', {
55 'sources!': [ 51 'sources!': [
56 'enhanced_bookmarks/image_store_util.cc', 52 'enhanced_bookmarks/image_store_util.cc',
57 ], 53 ],
58 }], 54 }],
59 ], 55 ],
60 }, 56 },
61 { 57 {
62 'target_name': 'enhanced_bookmarks_test_support', 58 'target_name': 'enhanced_bookmarks_test_support',
63 'type': 'static_library', 59 'type': 'static_library',
64 'include_dirs': [ 60 'include_dirs': [
65 '..', 61 '..',
66 ], 62 ],
67 'dependencies': [ 63 'dependencies': [
68 '../testing/gtest.gyp:gtest', 64 '../testing/gtest.gyp:gtest',
69 'enhanced_bookmarks', 65 'enhanced_bookmarks',
70 ], 66 ],
71 'sources': [ 67 'sources': [
72 'enhanced_bookmarks/test_image_store.cc', 68 'enhanced_bookmarks/test_image_store.cc',
73 'enhanced_bookmarks/test_image_store.h', 69 'enhanced_bookmarks/test_image_store.h',
74 ], 70 ],
75 }, 71 },
76 { 72 {
77 'target_name': 'enhanced_bookmarks_proto', 73 'target_name': 'enhanced_bookmarks_proto',
78 'type': 'static_library', 74 'type': 'static_library',
79 'sources': [ 75 'sources': [
80 'enhanced_bookmarks/proto/cluster.proto',
81 'enhanced_bookmarks/proto/metadata.proto', 76 'enhanced_bookmarks/proto/metadata.proto',
82 'enhanced_bookmarks/proto/search.proto', 77 'enhanced_bookmarks/proto/search.proto',
83 ], 78 ],
84 'variables': { 79 'variables': {
85 'proto_in_dir': './enhanced_bookmarks/proto', 80 'proto_in_dir': './enhanced_bookmarks/proto',
86 'proto_out_dir': 'components/enhanced_bookmarks/proto', 81 'proto_out_dir': 'components/enhanced_bookmarks/proto',
87 }, 82 },
88 'includes': [ '../build/protoc.gypi' ], 83 'includes': [ '../build/protoc.gypi' ],
89 }, 84 },
90 ], 85 ],
91 } 86 }
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