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

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: More feedback Created 6 years, 3 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
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_utils.cc', 36 'enhanced_bookmarks/enhanced_bookmark_utils.cc',
35 'enhanced_bookmarks/enhanced_bookmark_utils.h', 37 'enhanced_bookmarks/enhanced_bookmark_utils.h',
36 'enhanced_bookmarks/image_store.cc', 38 'enhanced_bookmarks/image_store.cc',
37 'enhanced_bookmarks/image_store.h', 39 'enhanced_bookmarks/image_store.h',
38 'enhanced_bookmarks/image_store_util.cc', 40 'enhanced_bookmarks/image_store_util.cc',
39 'enhanced_bookmarks/image_store_util.h', 41 'enhanced_bookmarks/image_store_util.h',
40 'enhanced_bookmarks/image_store_util_ios.mm', 42 'enhanced_bookmarks/image_store_util_ios.mm',
41 'enhanced_bookmarks/item_position.cc', 43 'enhanced_bookmarks/item_position.cc',
42 'enhanced_bookmarks/item_position.h', 44 'enhanced_bookmarks/item_position.h',
43 'enhanced_bookmarks/metadata_accessor.cc', 45 'enhanced_bookmarks/metadata_accessor.cc',
44 'enhanced_bookmarks/metadata_accessor.h', 46 'enhanced_bookmarks/metadata_accessor.h',
45 'enhanced_bookmarks/persistent_image_store.cc', 47 'enhanced_bookmarks/persistent_image_store.cc',
46 'enhanced_bookmarks/persistent_image_store.h', 48 'enhanced_bookmarks/persistent_image_store.h',
49 'enhanced_bookmarks/pref_names.cc',
50 'enhanced_bookmarks/pref_names.h',
47 ], 51 ],
48 'conditions': [ 52 'conditions': [
49 ['OS=="android"', { 53 ['OS=="android"', {
50 'sources': [ 54 'sources': [
51 'enhanced_bookmarks/android/component_jni_registrar.cc', 55 'enhanced_bookmarks/android/component_jni_registrar.cc',
52 'enhanced_bookmarks/android/component_jni_registrar.h', 56 'enhanced_bookmarks/android/component_jni_registrar.h',
53 'enhanced_bookmarks/android/enhanced_bookmarks_bridge.cc', 57 'enhanced_bookmarks/android/enhanced_bookmarks_bridge.cc',
54 'enhanced_bookmarks/android/enhanced_bookmarks_bridge.h', 58 'enhanced_bookmarks/android/enhanced_bookmarks_bridge.h',
55 ], 59 ],
56 'dependencies': [ 60 'dependencies': [
(...skipping 19 matching lines...) Expand all
76 ], 80 ],
77 'sources': [ 81 'sources': [
78 'enhanced_bookmarks/test_image_store.cc', 82 'enhanced_bookmarks/test_image_store.cc',
79 'enhanced_bookmarks/test_image_store.h', 83 'enhanced_bookmarks/test_image_store.h',
80 ], 84 ],
81 }, 85 },
82 { 86 {
83 'target_name': 'enhanced_bookmarks_proto', 87 'target_name': 'enhanced_bookmarks_proto',
84 'type': 'static_library', 88 'type': 'static_library',
85 'sources': [ 89 'sources': [
90 'enhanced_bookmarks/proto/cluster.proto',
86 'enhanced_bookmarks/proto/metadata.proto', 91 'enhanced_bookmarks/proto/metadata.proto',
87 'enhanced_bookmarks/proto/search.proto', 92 'enhanced_bookmarks/proto/search.proto',
88 ], 93 ],
89 'variables': { 94 'variables': {
90 'proto_in_dir': './enhanced_bookmarks/proto', 95 'proto_in_dir': './enhanced_bookmarks/proto',
91 'proto_out_dir': 'components/enhanced_bookmarks/proto', 96 'proto_out_dir': 'components/enhanced_bookmarks/proto',
92 }, 97 },
93 'includes': [ '../build/protoc.gypi' ], 98 'includes': [ '../build/protoc.gypi' ],
94 }, 99 },
95 ], 100 ],
(...skipping 19 matching lines...) Expand all
115 ], 120 ],
116 'variables': { 121 'variables': {
117 'jni_gen_package': 'enhanced_bookmarks', 122 'jni_gen_package': 'enhanced_bookmarks',
118 }, 123 },
119 'includes': [ '../build/jni_generator.gypi' ], 124 'includes': [ '../build/jni_generator.gypi' ],
120 }, 125 },
121 ], 126 ],
122 }] 127 }]
123 ], 128 ],
124 } 129 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698