OLD | NEW |
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_utils.cc', | 32 'enhanced_bookmarks/enhanced_bookmark_utils.cc', |
27 'enhanced_bookmarks/enhanced_bookmark_utils.h', | 33 'enhanced_bookmarks/enhanced_bookmark_utils.h', |
28 'enhanced_bookmarks/image_store.cc', | 34 'enhanced_bookmarks/image_store.cc', |
29 'enhanced_bookmarks/image_store.h', | 35 'enhanced_bookmarks/image_store.h', |
30 'enhanced_bookmarks/image_store_util.cc', | 36 'enhanced_bookmarks/image_store_util.cc', |
31 'enhanced_bookmarks/image_store_util.h', | 37 'enhanced_bookmarks/image_store_util.h', |
32 'enhanced_bookmarks/image_store_util_ios.mm', | 38 'enhanced_bookmarks/image_store_util_ios.mm', |
33 'enhanced_bookmarks/metadata_accessor.cc', | 39 'enhanced_bookmarks/metadata_accessor.cc', |
34 'enhanced_bookmarks/metadata_accessor.h', | 40 'enhanced_bookmarks/metadata_accessor.h', |
35 'enhanced_bookmarks/persistent_image_store.cc', | 41 'enhanced_bookmarks/persistent_image_store.cc', |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 'sources': [ | 73 'sources': [ |
68 'enhanced_bookmarks/test_image_store.cc', | 74 'enhanced_bookmarks/test_image_store.cc', |
69 'enhanced_bookmarks/test_image_store.h', | 75 'enhanced_bookmarks/test_image_store.h', |
70 ], | 76 ], |
71 }, | 77 }, |
72 { | 78 { |
73 'target_name': 'enhanced_bookmarks_proto', | 79 'target_name': 'enhanced_bookmarks_proto', |
74 'type': 'static_library', | 80 'type': 'static_library', |
75 'sources': [ | 81 'sources': [ |
76 'enhanced_bookmarks/proto/metadata.proto', | 82 'enhanced_bookmarks/proto/metadata.proto', |
| 83 'enhanced_bookmarks/proto/search.proto', |
77 ], | 84 ], |
78 'variables': { | 85 'variables': { |
79 'proto_in_dir': './enhanced_bookmarks/proto', | 86 'proto_in_dir': './enhanced_bookmarks/proto', |
80 'proto_out_dir': 'components/enhanced_bookmarks/proto', | 87 'proto_out_dir': 'components/enhanced_bookmarks/proto', |
81 }, | 88 }, |
82 'includes': [ '../build/protoc.gypi' ], | 89 'includes': [ '../build/protoc.gypi' ], |
83 }, | 90 }, |
84 ], | 91 ], |
85 'conditions' : [ | 92 'conditions' : [ |
86 ['OS=="android"', { | 93 ['OS=="android"', { |
(...skipping 17 matching lines...) Expand all Loading... |
104 ], | 111 ], |
105 'variables': { | 112 'variables': { |
106 'jni_gen_package': 'enhanced_bookmarks', | 113 'jni_gen_package': 'enhanced_bookmarks', |
107 }, | 114 }, |
108 'includes': [ '../build/jni_generator.gypi' ], | 115 'includes': [ '../build/jni_generator.gypi' ], |
109 }, | 116 }, |
110 ], | 117 ], |
111 }] | 118 }] |
112 ], | 119 ], |
113 } | 120 } |
OLD | NEW |