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

Unified Diff: content/content_browser.gypi

Issue 15907012: Implement SpeechRecognizerImplAndroid (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased, nits Created 7 years, 6 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
« no previous file with comments | « content/content.gyp ('k') | content/content_jni.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/content_browser.gypi
diff --git a/content/content_browser.gypi b/content/content_browser.gypi
index 1c47f76e7c21915f0bb422742ee67007bf02aaf0..7108227b3fb177c3f7c0b59548ef33bb89becfea 100644
--- a/content/content_browser.gypi
+++ b/content/content_browser.gypi
@@ -972,6 +972,8 @@
'browser/speech/speech_recognizer.h',
'browser/speech/speech_recognizer_impl.cc',
'browser/speech/speech_recognizer_impl.h',
+ 'browser/speech/speech_recognizer_impl_android.cc',
+ 'browser/speech/speech_recognizer_impl_android.h',
'browser/ssl/ssl_cert_error_handler.cc',
'browser/ssl/ssl_cert_error_handler.h',
'browser/ssl/ssl_client_auth_handler.cc',
@@ -1297,13 +1299,15 @@
['exclude', '^browser/geolocation/network_location_request\\.(cc|h)$'],
['exclude', '^browser/tracing/tracing_ui'],
['exclude', '^browser/speech/'],
- ['include', '^browser/speech/speech_recognition_dispatcher_host'],
- ['include', '^browser/speech/speech_recognition_manager_impl'],
+ ['include', '^browser/speech/speech_recognition_dispatcher_host\\.(cc|h)$'],
+ ['include', '^browser/speech/speech_recognition_manager_impl\\.(cc|h)$'],
['include', '^browser/speech/speech_recognizer\\.h$'],
+ ['include', '^browser/speech/speech_recognizer_impl_android\\.(cc|h)$'],
],
- }, {
+ }, { # OS!="android"
'sources/': [
['exclude', '^browser/renderer_host/java/'],
+ ['exclude', '^browser/speech/speech_recognizer_impl_android\\.(cc|h)'],
],
}],
['OS=="mac"', {
@@ -1421,7 +1425,7 @@
}],
['input_speech==0', {
'sources/': [
- ['exclude', '^browser/speech/input_tag_speech_dispatcher_host'],
+ ['exclude', '^browser/speech/input_tag_speech_dispatcher_host\\.(cc|h)$'],
],
}, { # input_speech==1
'dependencies': [
« no previous file with comments | « content/content.gyp ('k') | content/content_jni.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698