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 source_set("enhanced_bookmarks") { | 6 source_set("enhanced_bookmarks") { |
6 sources = [ | 7 sources = [ |
7 "bookmark_image_service.cc", | 8 "bookmark_image_service.cc", |
8 "bookmark_image_service.h", | 9 "bookmark_image_service.h", |
9 "bookmark_server_cluster_service.cc", | 10 "bookmark_server_cluster_service.cc", |
10 "bookmark_server_cluster_service.h", | 11 "bookmark_server_cluster_service.h", |
11 "bookmark_server_search_service.cc", | 12 "bookmark_server_search_service.cc", |
12 "bookmark_server_search_service.h", | 13 "bookmark_server_search_service.h", |
13 "bookmark_server_service.cc", | 14 "bookmark_server_service.cc", |
14 "bookmark_server_service.h", | 15 "bookmark_server_service.h", |
(...skipping 26 matching lines...) Expand all Loading... |
41 "//url", | 42 "//url", |
42 ] | 43 ] |
43 | 44 |
44 if (is_ios) { | 45 if (is_ios) { |
45 sources -= [ | 46 sources -= [ |
46 "image_store_util.cc", | 47 "image_store_util.cc", |
47 ] | 48 ] |
48 } | 49 } |
49 } | 50 } |
50 | 51 |
| 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 |