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

Side by Side Diff: components/enhanced_bookmarks.gypi

Issue 538903003: Bring up of the server side full text search. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. 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
« no previous file with comments | « no previous file | components/enhanced_bookmarks/DEPS » ('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 '../net/net.gyp:net', 16 '../net/net.gyp:net',
16 '../sql/sql.gyp:sql', 17 '../sql/sql.gyp:sql',
17 '../ui/gfx/gfx.gyp:gfx', 18 '../ui/gfx/gfx.gyp:gfx',
18 '../url/url.gyp:url_lib', 19 '../url/url.gyp:url_lib',
19 'bookmarks_browser', 20 'bookmarks_browser',
20 'enhanced_bookmarks_proto', 21 'enhanced_bookmarks_proto',
21 'keyed_service_core', 22 'keyed_service_core',
23 'signin_core_browser',
22 ], 24 ],
23 'sources': [ 25 'sources': [
24 'enhanced_bookmarks/bookmark_image_service.cc', 26 'enhanced_bookmarks/bookmark_image_service.cc',
25 'enhanced_bookmarks/bookmark_image_service.h', 27 'enhanced_bookmarks/bookmark_image_service.h',
28 'enhanced_bookmarks/bookmark_server_search_service.cc',
29 'enhanced_bookmarks/bookmark_server_search_service.h',
30 'enhanced_bookmarks/bookmark_server_service.cc',
31 'enhanced_bookmarks/bookmark_server_service.h',
26 'enhanced_bookmarks/enhanced_bookmark_model.cc', 32 'enhanced_bookmarks/enhanced_bookmark_model.cc',
27 'enhanced_bookmarks/enhanced_bookmark_model.h', 33 'enhanced_bookmarks/enhanced_bookmark_model.h',
28 'enhanced_bookmarks/enhanced_bookmark_utils.cc', 34 'enhanced_bookmarks/enhanced_bookmark_utils.cc',
29 'enhanced_bookmarks/enhanced_bookmark_utils.h', 35 'enhanced_bookmarks/enhanced_bookmark_utils.h',
30 'enhanced_bookmarks/image_store.cc', 36 'enhanced_bookmarks/image_store.cc',
31 'enhanced_bookmarks/image_store.h', 37 'enhanced_bookmarks/image_store.h',
32 'enhanced_bookmarks/image_store_util.cc', 38 'enhanced_bookmarks/image_store_util.cc',
33 'enhanced_bookmarks/image_store_util.h', 39 'enhanced_bookmarks/image_store_util.h',
34 'enhanced_bookmarks/image_store_util_ios.mm', 40 'enhanced_bookmarks/image_store_util_ios.mm',
35 'enhanced_bookmarks/item_position.cc', 41 'enhanced_bookmarks/item_position.cc',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 'sources': [ 77 'sources': [
72 'enhanced_bookmarks/test_image_store.cc', 78 'enhanced_bookmarks/test_image_store.cc',
73 'enhanced_bookmarks/test_image_store.h', 79 'enhanced_bookmarks/test_image_store.h',
74 ], 80 ],
75 }, 81 },
76 { 82 {
77 'target_name': 'enhanced_bookmarks_proto', 83 'target_name': 'enhanced_bookmarks_proto',
78 'type': 'static_library', 84 'type': 'static_library',
79 'sources': [ 85 'sources': [
80 'enhanced_bookmarks/proto/metadata.proto', 86 'enhanced_bookmarks/proto/metadata.proto',
87 'enhanced_bookmarks/proto/search.proto',
81 ], 88 ],
82 'variables': { 89 'variables': {
83 'proto_in_dir': './enhanced_bookmarks/proto', 90 'proto_in_dir': './enhanced_bookmarks/proto',
84 'proto_out_dir': 'components/enhanced_bookmarks/proto', 91 'proto_out_dir': 'components/enhanced_bookmarks/proto',
85 }, 92 },
86 'includes': [ '../build/protoc.gypi' ], 93 'includes': [ '../build/protoc.gypi' ],
87 }, 94 },
88 ], 95 ],
89 'conditions' : [ 96 'conditions' : [
90 ['OS=="android"', { 97 ['OS=="android"', {
(...skipping 17 matching lines...) Expand all
108 ], 115 ],
109 'variables': { 116 'variables': {
110 'jni_gen_package': 'enhanced_bookmarks', 117 'jni_gen_package': 'enhanced_bookmarks',
111 }, 118 },
112 'includes': [ '../build/jni_generator.gypi' ], 119 'includes': [ '../build/jni_generator.gypi' ],
113 }, 120 },
114 ], 121 ],
115 }] 122 }]
116 ], 123 ],
117 } 124 }
OLDNEW
« no previous file with comments | « no previous file | components/enhanced_bookmarks/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698