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

Side by Side 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 unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 source_set("voice") { 5 source_set("voice") {
6 sources = [ 6 sources = [
7 "audio_session_controller.h",
7 "speech_input_locale.h", 8 "speech_input_locale.h",
8 "speech_input_locale_config.h", 9 "speech_input_locale_config.h",
9 "speech_input_locale_config.mm", 10 "speech_input_locale_config.mm",
10 "speech_input_locale_config_impl.h", 11 "speech_input_locale_config_impl.h",
11 "speech_input_locale_config_impl.mm", 12 "speech_input_locale_config_impl.mm",
12 "speech_input_locale_match_config.h", 13 "speech_input_locale_match_config.h",
13 "speech_input_locale_match_config.mm", 14 "speech_input_locale_match_config.mm",
14 ] 15 ]
15 16
16 public_deps = [ 17 public_deps = [
17 "//base", 18 "//base",
18 "//ios/chrome/browser", 19 "//ios/chrome/browser",
19 "//ios/public/provider/chrome/browser", 20 "//ios/public/provider/chrome/browser",
20 ] 21 ]
21 } 22 }
23
24 source_set("test_support") {
25 sources = [
26 "test_audio_session_controller.cc",
27 "test_audio_session_controller.h",
28 ]
29
30 deps = [
31 ":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.
32 ]
33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698