| 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_server_cluster_service.cc", | 13 "bookmark_server_cluster_service.cc", |
| 14 "bookmark_server_cluster_service.h", | 14 "bookmark_server_cluster_service.h", |
| 15 "bookmark_server_service.cc", | 15 "bookmark_server_service.cc", |
| 16 "bookmark_server_service.h", | 16 "bookmark_server_service.h", |
| 17 "enhanced_bookmark_features.cc", | |
| 18 "enhanced_bookmark_features.h", | |
| 19 "enhanced_bookmark_model.cc", | 17 "enhanced_bookmark_model.cc", |
| 20 "enhanced_bookmark_model.h", | 18 "enhanced_bookmark_model.h", |
| 21 "enhanced_bookmark_model_observer.h", | 19 "enhanced_bookmark_model_observer.h", |
| 22 "enhanced_bookmark_switches.cc", | 20 "enhanced_bookmark_switches_ios.cc", |
| 23 "enhanced_bookmark_switches.h", | 21 "enhanced_bookmark_switches_ios.h", |
| 24 "enhanced_bookmark_utils.cc", | 22 "enhanced_bookmark_utils.cc", |
| 25 "enhanced_bookmark_utils.h", | 23 "enhanced_bookmark_utils.h", |
| 26 "image_record.cc", | 24 "image_record.cc", |
| 27 "image_record.h", | 25 "image_record.h", |
| 28 "image_store.cc", | 26 "image_store.cc", |
| 29 "image_store.h", | 27 "image_store.h", |
| 30 "image_store_util.cc", | 28 "image_store_util.cc", |
| 31 "image_store_util.h", | 29 "image_store_util.h", |
| 32 "image_store_util_ios.mm", | 30 "image_store_util_ios.mm", |
| 33 "item_position.cc", | 31 "item_position.cc", |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 deps = [ | 102 deps = [ |
| 105 ":test_support", | 103 ":test_support", |
| 106 "//base", | 104 "//base", |
| 107 "//components/bookmarks/browser", | 105 "//components/bookmarks/browser", |
| 108 "//components/bookmarks/test", | 106 "//components/bookmarks/test", |
| 109 "//components/enhanced_bookmarks/proto", | 107 "//components/enhanced_bookmarks/proto", |
| 110 "//sql", | 108 "//sql", |
| 111 "//ui/gfx", | 109 "//ui/gfx", |
| 112 ] | 110 ] |
| 113 } | 111 } |
| OLD | NEW |