Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 } | |
| OLD | NEW |