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_search_service.cc", | |
18 "bookmark_server_search_service.h", | |
19 "bookmark_server_service.cc", | 17 "bookmark_server_service.cc", |
20 "bookmark_server_service.h", | 18 "bookmark_server_service.h", |
21 "enhanced_bookmark_model.cc", | 19 "enhanced_bookmark_model.cc", |
22 "enhanced_bookmark_model.h", | 20 "enhanced_bookmark_model.h", |
23 "enhanced_bookmark_model_observer.h", | 21 "enhanced_bookmark_model_observer.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", |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 "test_image_store.cc", | 76 "test_image_store.cc", |
79 "test_image_store.h", | 77 "test_image_store.h", |
80 ] | 78 ] |
81 | 79 |
82 deps = [ | 80 deps = [ |
83 ":enhanced_bookmarks", | 81 ":enhanced_bookmarks", |
84 "//skia", | 82 "//skia", |
85 "//testing/gtest", | 83 "//testing/gtest", |
86 ] | 84 ] |
87 } | 85 } |
OLD | NEW |