| 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 if (is_android) { | 5 if (is_android) { |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 import("//build/config/android/rules.gni") | 7 import("//build/config/android/rules.gni") |
| 8 } | 8 } |
| 9 | 9 |
| 10 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks | 10 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks |
| 11 source_set("enhanced_bookmarks") { | 11 source_set("enhanced_bookmarks") { |
| 12 sources = [ | 12 sources = [ |
| 13 "bookmark_image_service.cc", | 13 "bookmark_image_service.cc", |
| 14 "bookmark_image_service.h", | 14 "bookmark_image_service.h", |
| 15 "bookmark_server_cluster_service.cc", | 15 "bookmark_server_cluster_service.cc", |
| 16 "bookmark_server_cluster_service.h", | 16 "bookmark_server_cluster_service.h", |
| 17 "bookmark_server_service.cc", | 17 "bookmark_server_service.cc", |
| 18 "bookmark_server_service.h", | 18 "bookmark_server_service.h", |
| 19 "enhanced_bookmark_features.cc", |
| 20 "enhanced_bookmark_features.h", |
| 19 "enhanced_bookmark_model.cc", | 21 "enhanced_bookmark_model.cc", |
| 20 "enhanced_bookmark_model.h", | 22 "enhanced_bookmark_model.h", |
| 21 "enhanced_bookmark_model_observer.h", | 23 "enhanced_bookmark_model_observer.h", |
| 24 "enhanced_bookmark_switches.cc", |
| 25 "enhanced_bookmark_switches.h", |
| 22 "enhanced_bookmark_utils.cc", | 26 "enhanced_bookmark_utils.cc", |
| 23 "enhanced_bookmark_utils.h", | 27 "enhanced_bookmark_utils.h", |
| 24 "image_record.cc", | 28 "image_record.cc", |
| 25 "image_record.h", | 29 "image_record.h", |
| 26 "image_store.cc", | 30 "image_store.cc", |
| 27 "image_store.h", | 31 "image_store.h", |
| 28 "image_store_util.cc", | 32 "image_store_util.cc", |
| 29 "image_store_util.h", | 33 "image_store_util.h", |
| 30 "image_store_util_ios.mm", | 34 "image_store_util_ios.mm", |
| 31 "item_position.cc", | 35 "item_position.cc", |
| 32 "item_position.h", | 36 "item_position.h", |
| 33 "metadata_accessor.cc", | 37 "metadata_accessor.cc", |
| 34 "metadata_accessor.h", | 38 "metadata_accessor.h", |
| 35 "persistent_image_store.cc", | 39 "persistent_image_store.cc", |
| 36 "persistent_image_store.h", | 40 "persistent_image_store.h", |
| 37 "pref_names.cc", | 41 "pref_names.cc", |
| 38 "pref_names.h", | 42 "pref_names.h", |
| 39 ] | 43 ] |
| 40 | 44 |
| 41 deps = [ | 45 deps = [ |
| 42 "//base", | 46 "//base", |
| 43 "//components/bookmarks/browser", | 47 "//components/bookmarks/browser", |
| 44 "//components/enhanced_bookmarks/proto", | 48 "//components/enhanced_bookmarks/proto", |
| 45 "//components/keyed_service/core", | 49 "//components/keyed_service/core", |
| 46 "//components/signin/core/browser", | 50 "//components/signin/core/browser", |
| 47 "//components/sync_driver", | 51 "//components/sync_driver", |
| 52 "//components/variations", |
| 48 "//skia", | 53 "//skia", |
| 49 "//sql", | 54 "//sql", |
| 50 "//ui/gfx", | 55 "//ui/gfx", |
| 51 "//url", | 56 "//url", |
| 52 ] | 57 ] |
| 53 | 58 |
| 54 if (is_ios) { | 59 if (is_ios) { |
| 55 sources -= [ "image_store_util.cc" ] | 60 sources -= [ "image_store_util.cc" ] |
| 56 } | 61 } |
| 57 } | 62 } |
| (...skipping 17 matching lines...) Expand all Loading... |
| 75 "test_image_store.cc", | 80 "test_image_store.cc", |
| 76 "test_image_store.h", | 81 "test_image_store.h", |
| 77 ] | 82 ] |
| 78 | 83 |
| 79 deps = [ | 84 deps = [ |
| 80 ":enhanced_bookmarks", | 85 ":enhanced_bookmarks", |
| 81 "//skia", | 86 "//skia", |
| 82 "//testing/gtest", | 87 "//testing/gtest", |
| 83 ] | 88 ] |
| 84 } | 89 } |
| OLD | NEW |