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

Unified Diff: ios/chrome/browser/voice/BUILD.gn

Issue 2432563002: [ios] Adds a provider API for AudioSessionController. (Closed)
Patch Set: Created 4 years, 2 months 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
Index: ios/chrome/browser/voice/BUILD.gn
diff --git a/ios/chrome/browser/voice/BUILD.gn b/ios/chrome/browser/voice/BUILD.gn
index 5342d5a1382f43bfbf6212ac6e3cad16362bd4e0..cccdddd6c1cc2d90da68aa26e5b3fd84eb6431ad 100644
--- a/ios/chrome/browser/voice/BUILD.gn
+++ b/ios/chrome/browser/voice/BUILD.gn
@@ -4,6 +4,7 @@
source_set("voice") {
sources = [
+ "audio_session_controller.h",
"speech_input_locale.h",
"speech_input_locale_config.h",
"speech_input_locale_config.mm",
@@ -19,3 +20,14 @@ source_set("voice") {
"//ios/public/provider/chrome/browser",
]
}
+
+source_set("test_support") {
+ sources = [
+ "test_audio_session_controller.cc",
+ "test_audio_session_controller.h",
+ ]
+
+ deps = [
+ ":voice",
sdefresne 2016/10/18 22:19:43 Need a dependency on //base here.
rohitrao (ping after 24h) 2016/10/18 23:30:44 Done.
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698