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

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: Removing empty DEPS file, fixing a nit. 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_utils.cc', 34 'enhanced_bookmarks/enhanced_bookmark_utils.cc',
33 'enhanced_bookmarks/enhanced_bookmark_utils.h', 35 'enhanced_bookmarks/enhanced_bookmark_utils.h',
34 'enhanced_bookmarks/image_store.cc', 36 'enhanced_bookmarks/image_store.cc',
35 'enhanced_bookmarks/image_store.h', 37 'enhanced_bookmarks/image_store.h',
36 'enhanced_bookmarks/image_store_util.cc', 38 'enhanced_bookmarks/image_store_util.cc',
37 'enhanced_bookmarks/image_store_util.h', 39 'enhanced_bookmarks/image_store_util.h',
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 'dependencies': [ 71 'dependencies': [
70 '../testing/gtest.gyp:gtest', 72 '../testing/gtest.gyp:gtest',
71 'enhanced_bookmarks', 73 'enhanced_bookmarks',
72 ], 74 ],
73 'sources': [ 75 'sources': [
74 'enhanced_bookmarks/test_image_store.cc', 76 'enhanced_bookmarks/test_image_store.cc',
75 'enhanced_bookmarks/test_image_store.h', 77 'enhanced_bookmarks/test_image_store.h',
76 ], 78 ],
77 }, 79 },
78 { 80 {
79 'target_name': 'enhanced_bookmarks_proto', 81 'target_name': 'enhanced_bookmarks_proto',
Yaron 2014/09/05 05:18:00 update gn build as well
noyau (Ping after 24h) 2014/09/10 08:53:57 Done.
80 'type': 'static_library', 82 'type': 'static_library',
81 'sources': [ 83 'sources': [
84 'enhanced_bookmarks/proto/cluster.proto',
82 'enhanced_bookmarks/proto/metadata.proto', 85 'enhanced_bookmarks/proto/metadata.proto',
83 'enhanced_bookmarks/proto/search.proto', 86 'enhanced_bookmarks/proto/search.proto',
84 ], 87 ],
85 'variables': { 88 'variables': {
86 'proto_in_dir': './enhanced_bookmarks/proto', 89 'proto_in_dir': './enhanced_bookmarks/proto',
87 'proto_out_dir': 'components/enhanced_bookmarks/proto', 90 'proto_out_dir': 'components/enhanced_bookmarks/proto',
88 }, 91 },
89 'includes': [ '../build/protoc.gypi' ], 92 'includes': [ '../build/protoc.gypi' ],
90 }, 93 },
91 ], 94 ],
(...skipping 19 matching lines...) Expand all
111 ], 114 ],
112 'variables': { 115 'variables': {
113 'jni_gen_package': 'enhanced_bookmarks', 116 'jni_gen_package': 'enhanced_bookmarks',
114 }, 117 },
115 'includes': [ '../build/jni_generator.gypi' ], 118 'includes': [ '../build/jni_generator.gypi' ],
116 }, 119 },
117 ], 120 ],
118 }] 121 }]
119 ], 122 ],
120 } 123 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698