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