Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Unified Diff: chromeos/components/tether/BUILD.gn

Issue 2564653004: CrOS Tether: Create HostScanScheduler, which schedules scans for devices which can serve as tether … (Closed)
Patch Set: Use PA_LOG(). Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chromeos/components/tether/DEPS » ('j') | chromeos/components/tether/host_scan_scheduler.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/components/tether/BUILD.gn
diff --git a/chromeos/components/tether/BUILD.gn b/chromeos/components/tether/BUILD.gn
index 5ea6be44c519d60bbeab2177ba295466d5a3c209..76349982298ccfb7867ee04cdabab4cb690c802d 100644
--- a/chromeos/components/tether/BUILD.gn
+++ b/chromeos/components/tether/BUILD.gn
@@ -6,12 +6,21 @@ assert(is_chromeos, "Non-ChromeOS builds cannot depend on //chromeos")
static_library("tether") {
sources = [
+ "host_scan_scheduler.cc",
+ "host_scan_scheduler.h",
+ "host_scanner.cc",
+ "host_scanner.h",
"initializer.cc",
"initializer.h",
]
deps = [
"//base",
+ "//chromeos",
+ ]
+
+ public_deps = [
+ "//components/cryptauth/proto",
]
}
@@ -33,12 +42,15 @@ static_library("test_support") {
source_set("unit_tests") {
testonly = true
- sources = []
+ sources = [
+ "host_scan_scheduler_unittest.cc",
+ ]
deps = [
":test_support",
":tether",
"//base/test:test_support",
+ "//testing/gmock",
"//testing/gtest",
]
}
« no previous file with comments | « no previous file | chromeos/components/tether/DEPS » ('j') | chromeos/components/tether/host_scan_scheduler.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698