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
3# found in the LICENSE file.
4
5source_set("enhanced_bookmarks") {
6  sources = [
7    "image_store.cc",
8    "image_store.h",
9    "image_store_util.cc",
10    "image_store_util.h",
11    "image_store_util_ios.mm",
12    "metadata_accessor.cc",
13    "metadata_accessor.h",
14    "persistent_image_store.cc",
15    "persistent_image_store.h",
16  ]
17
18  deps = [
19    "//base",
20    "//components/bookmarks/browser",
21    "//components/enhanced_bookmarks/proto",
22    "//sql",
23    "//ui/gfx",
24    "//url",
25  ]
26
27  if (is_ios) {
28    sources -= [
29      "image_store_util.cc",
30    ]
31  }
32}
33
34source_set("test_support") {
35  testonly = true
36  sources = [
37    "test_image_store.cc",
38    "test_image_store.h",
39  ]
40
41  deps = [
42    ":enhanced_bookmarks",
43    "//skia",
44    "//testing/gtest",
45  ]
46}
47