# Copyright 2019 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config/chromeos/ui_mode.gni")
assert(is_chromeos_ash)
source_set("test_support") {
testonly = true
sources = [
"cros_network_config_test_helper.cc",
"cros_network_config_test_helper.h",
"cros_network_config_test_observer.cc",
"cros_network_config_test_observer.h",
]
public_deps = [
"//base",
"//chromeos/ash/components/network",
"//chromeos/ash/components/network:test_support",
"//chromeos/services/network_config/public/mojom",
"//mojo/public/cpp/bindings",
]
deps = [
"//chromeos/ash/components/system",
"//chromeos/ash/services/network_config",
"//chromeos/ash/services/network_config:in_process_instance",
]
}