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

Side by Side Diff: ios/chrome/browser/ui/voice/BUILD.gn

Issue 2449593002: [ios] Adds support for parsing Text-to-Speech search results. (Closed)
Patch Set: Fix AVFoundation dependency. Created 4 years, 1 month 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
(Empty)
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
3 # found in the LICENSE file.
4
5 source_set("tts") {
sdefresne 2016/10/25 13:20:30 I would call this "voice" or change the directory
rohitrao (ping after 24h) 2016/10/25 15:23:12 Done. In general, the "tts" code is going into se
6 sources = [
7 "text_to_speech_player.h",
8 "text_to_speech_player.mm",
9 "voice_search_notification_names.h",
10 "voice_search_notification_names.mm",
11 ]
12
13 deps = [
14 "//base",
15 ]
16
17 libs = [ "AVFoundation.framework" ]
18 }
19
20 source_set("tts_unit_tests") {
sdefresne 2016/10/25 13:20:30 We usually just call those targets "unit_tests" as
rohitrao (ping after 24h) 2016/10/25 15:23:12 Done.
21 testonly = true
22
23 sources = [
24 "text_to_speech_player_unittest.mm",
25 ]
26
27 deps = [
28 "//base",
29 "//base/test:test_support",
30 "//ios/web",
31 "//ios/web:test_support",
32 "//testing/gtest",
33 "//url",
34 ]
35
36 public_deps = [
37 ":tts",
38 ]
39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698