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 source_set("enhanced_bookmarks") { | 5 source_set("enhanced_bookmarks") { |
6 sources = [ | 6 sources = [ |
| 7 "bookmark_image_service.cc", |
| 8 "bookmark_image_service.h", |
| 9 "bookmark_server_cluster_service.cc", |
| 10 "bookmark_server_cluster_service.h", |
| 11 "bookmark_server_search_service.cc", |
| 12 "bookmark_server_search_service.h", |
| 13 "bookmark_server_service.cc", |
| 14 "bookmark_server_service.h", |
| 15 "enhanced_bookmark_model.cc", |
| 16 "enhanced_bookmark_model.h", |
| 17 "enhanced_bookmark_model_observer.h", |
| 18 "enhanced_bookmark_utils.cc", |
| 19 "enhanced_bookmark_utils.h", |
7 "image_store.cc", | 20 "image_store.cc", |
8 "image_store.h", | 21 "image_store.h", |
9 "image_store_util.cc", | 22 "image_store_util.cc", |
10 "image_store_util.h", | 23 "image_store_util.h", |
11 "image_store_util_ios.mm", | 24 "image_store_util_ios.mm", |
| 25 "item_position.cc", |
| 26 "item_position.h", |
12 "metadata_accessor.cc", | 27 "metadata_accessor.cc", |
13 "metadata_accessor.h", | 28 "metadata_accessor.h", |
14 "persistent_image_store.cc", | 29 "persistent_image_store.cc", |
15 "persistent_image_store.h", | 30 "persistent_image_store.h", |
| 31 "pref_names.cc", |
| 32 "pref_names.h", |
16 ] | 33 ] |
17 | 34 |
18 deps = [ | 35 deps = [ |
19 "//base", | 36 "//base", |
20 "//components/bookmarks/browser", | 37 "//components/bookmarks/browser", |
21 "//components/enhanced_bookmarks/proto", | 38 "//components/enhanced_bookmarks/proto", |
22 "//sql", | 39 "//sql", |
23 "//ui/gfx", | 40 "//ui/gfx", |
24 "//url", | 41 "//url", |
25 ] | 42 ] |
(...skipping 11 matching lines...) Expand all Loading... |
37 "test_image_store.cc", | 54 "test_image_store.cc", |
38 "test_image_store.h", | 55 "test_image_store.h", |
39 ] | 56 ] |
40 | 57 |
41 deps = [ | 58 deps = [ |
42 ":enhanced_bookmarks", | 59 ":enhanced_bookmarks", |
43 "//skia", | 60 "//skia", |
44 "//testing/gtest", | 61 "//testing/gtest", |
45 ] | 62 ] |
46 } | 63 } |
OLD | NEW |