summaryrefslogtreecommitdiff
path: root/chromium/components/doodle/BUILD.gn
blob: 1eec0e371989047d7b491cf86dd3c052bc104615 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Copyright 2017 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

static_library("doodle") {
  sources = [
    "doodle_fetcher.h",
    "doodle_fetcher_impl.cc",
    "doodle_fetcher_impl.h",
    "doodle_service.cc",
    "doodle_service.h",
    "doodle_types.cc",
    "doodle_types.h",
  ]

  deps = [
    "//base",
    "//components/data_use_measurement/core",
    "//components/google/core/browser",
    "//net",
  ]
}

source_set("unit_tests") {
  testonly = true
  sources = [
    "doodle_fetcher_impl_unittest.cc",
    "doodle_service_unittest.cc",
  ]

  deps = [
    ":doodle",
    "//components/google/core/browser",
    "//net:test_support",
    "//ui/base",
  ]
}