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

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

Issue 2505933009: [ObjC ARC] Converts ios/chrome/browser/voice:tts to ARC.Automatically generated ARCMigrate commit… (Closed)
Patch Set: make_unique 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 unified diff | Download patch
« no previous file with comments | « no previous file | ios/chrome/browser/voice/text_to_speech_listener.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "speech_input_locale.h", 7 "speech_input_locale.h",
8 "speech_input_locale_config.h", 8 "speech_input_locale_config.h",
9 "speech_input_locale_config.mm", 9 "speech_input_locale_config.mm",
10 "speech_input_locale_config_impl.h", 10 "speech_input_locale_config_impl.h",
(...skipping 20 matching lines...) Expand all
31 ] 31 ]
32 32
33 deps = [ 33 deps = [
34 "//components/pref_registry", 34 "//components/pref_registry",
35 "//components/prefs", 35 "//components/prefs",
36 "//ios/public/provider/chrome/browser", 36 "//ios/public/provider/chrome/browser",
37 ] 37 ]
38 } 38 }
39 39
40 source_set("tts") { 40 source_set("tts") {
41 configs += [ "//build/config/compiler:enable_arc" ]
41 sources = [ 42 sources = [
42 "text_to_speech_listener.h", 43 "text_to_speech_listener.h",
43 "text_to_speech_listener.mm", 44 "text_to_speech_listener.mm",
44 "text_to_speech_parser.h", 45 "text_to_speech_parser.h",
45 "text_to_speech_parser.mm", 46 "text_to_speech_parser.mm",
46 "voice_search_url_rewriter.h", 47 "voice_search_url_rewriter.h",
47 "voice_search_url_rewriter.mm", 48 "voice_search_url_rewriter.mm",
48 ] 49 ]
49 50
50 deps = [ 51 deps = [
(...skipping 24 matching lines...) Expand all
75 "//ios/web", 76 "//ios/web",
76 "//ios/web:test_support", 77 "//ios/web:test_support",
77 "//testing/gtest", 78 "//testing/gtest",
78 "//third_party/google_toolbox_for_mac", 79 "//third_party/google_toolbox_for_mac",
79 ] 80 ]
80 81
81 public_deps = [ 82 public_deps = [
82 ":tts", 83 ":tts",
83 ] 84 ]
84 } 85 }
OLDNEW
« no previous file with comments | « no previous file | ios/chrome/browser/voice/text_to_speech_listener.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698