summaryrefslogtreecommitdiffstats
path: root/components/wifi_sync/BUILD.gn
blob: 034442895505a764e4ede950a14911a4ffb7e689 (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
44
45
46
47
# Copyright 2014 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("wifi_sync") {
  sources = [
    "network_state_helper_chromeos.cc",
    "network_state_helper_chromeos.h",
    "wifi_config_delegate.h",
    "wifi_config_delegate_chromeos.cc",
    "wifi_config_delegate_chromeos.h",
    "wifi_credential.cc",
    "wifi_credential.h",
    "wifi_credential_syncable_service.cc",
    "wifi_credential_syncable_service.h",
    "wifi_credential_syncable_service_factory.cc",
    "wifi_credential_syncable_service_factory.h",
    "wifi_security_class.cc",
    "wifi_security_class.h",
    "wifi_security_class_chromeos.cc",
  ]

  deps = [
    "//base",
    "//components/onc",
    "//sync",
  ]
}

source_set("unit_tests") {
  testonly = true

  deps = [
    ":wifi_sync",
    "//sync",
    "//testing/gmock",
    "//testing/gtest",
  ]

  sources = [
    "wifi_config_delegate_chromeos_unittest.cc",
    "wifi_credential_syncable_service_unittest.cc",
    "wifi_credential_unittest.cc",
    "wifi_security_class_chromeos_unittest.cc",
    "wifi_security_class_unittest.cc",
  ]
}