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", |
(...skipping 25 matching lines...) Expand all Loading... |
36 deps = [ | 36 deps = [ |
37 "//base", | 37 "//base", |
38 "//components/bookmarks/browser", | 38 "//components/bookmarks/browser", |
39 "//components/enhanced_bookmarks/proto", | 39 "//components/enhanced_bookmarks/proto", |
40 "//sql", | 40 "//sql", |
41 "//ui/gfx", | 41 "//ui/gfx", |
42 "//url", | 42 "//url", |
43 ] | 43 ] |
44 | 44 |
45 if (is_ios) { | 45 if (is_ios) { |
46 sources -= [ | 46 sources -= [ "image_store_util.cc" ] |
47 "image_store_util.cc", | |
48 ] | |
49 } | 47 } |
50 } | 48 } |
51 | 49 |
52 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks_test_support | 50 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks_test_support |
53 source_set("test_support") { | 51 source_set("test_support") { |
54 testonly = true | 52 testonly = true |
55 sources = [ | 53 sources = [ |
56 "test_image_store.cc", | 54 "test_image_store.cc", |
57 "test_image_store.h", | 55 "test_image_store.h", |
58 ] | 56 ] |
59 | 57 |
60 deps = [ | 58 deps = [ |
61 ":enhanced_bookmarks", | 59 ":enhanced_bookmarks", |
62 "//skia", | 60 "//skia", |
63 "//testing/gtest", | 61 "//testing/gtest", |
64 ] | 62 ] |
65 } | 63 } |
OLD | NEW |