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