summaryrefslogtreecommitdiff
path: root/chromium/remoting/client/notification/BUILD.gn
blob: e8cfae11b82b9794492ab41a3e39ede263850a75 (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
38
39
40
41
42
43
# Copyright 2019 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.

source_set("notification") {
  sources = [
    "gstatic_json_fetcher.cc",
    "gstatic_json_fetcher.h",
    "json_fetcher.h",
    "notification_client.cc",
    "notification_client.h",
    "notification_message.cc",
    "notification_message.h",
    "version_range.cc",
    "version_range.h",
  ]

  configs += [ "//remoting/build/config:version" ]

  deps = [
    "//base",
    "//net",
    "//remoting/base",
    "//ui/base",
  ]
}

source_set("unit_tests") {
  testonly = true

  sources = [
    "gstatic_json_fetcher_unittest.cc",
    "notification_client_unittest.cc",
    "version_range_unittest.cc",
  ]

  deps = [
    ":notification",
    "//net",
    "//testing/gmock",
    "//testing/gtest",
  ]
}