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

Side by Side Diff: content/content_browser.gypi

Issue 15907012: Implement SpeechRecognizerImplAndroid (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Convert error codes in Java, refactor *{,JNI} methods into single methods, 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 unified diff | Download patch
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'dependencies': [ 6 'dependencies': [
7 'browser/speech/proto/speech_proto.gyp:speech_proto', 7 'browser/speech/proto/speech_proto.gyp:speech_proto',
8 '../base/base.gyp:base_static', 8 '../base/base.gyp:base_static',
9 '../crypto/crypto.gyp:crypto', 9 '../crypto/crypto.gyp:crypto',
10 '../google_apis/google_apis.gyp:google_apis', 10 '../google_apis/google_apis.gyp:google_apis',
(...skipping 948 matching lines...) Expand 10 before | Expand all | Expand 10 after
959 'browser/speech/input_tag_speech_dispatcher_host.h', 959 'browser/speech/input_tag_speech_dispatcher_host.h',
960 'browser/speech/speech_recognition_dispatcher_host.cc', 960 'browser/speech/speech_recognition_dispatcher_host.cc',
961 'browser/speech/speech_recognition_dispatcher_host.h', 961 'browser/speech/speech_recognition_dispatcher_host.h',
962 'browser/speech/speech_recognition_engine.cc', 962 'browser/speech/speech_recognition_engine.cc',
963 'browser/speech/speech_recognition_engine.h', 963 'browser/speech/speech_recognition_engine.h',
964 'browser/speech/speech_recognition_manager_impl.cc', 964 'browser/speech/speech_recognition_manager_impl.cc',
965 'browser/speech/speech_recognition_manager_impl.h', 965 'browser/speech/speech_recognition_manager_impl.h',
966 'browser/speech/speech_recognizer.h', 966 'browser/speech/speech_recognizer.h',
967 'browser/speech/speech_recognizer_impl.cc', 967 'browser/speech/speech_recognizer_impl.cc',
968 'browser/speech/speech_recognizer_impl.h', 968 'browser/speech/speech_recognizer_impl.h',
969 'browser/speech/speech_recognizer_impl_android.cc',
970 'browser/speech/speech_recognizer_impl_android.h',
969 'browser/ssl/ssl_cert_error_handler.cc', 971 'browser/ssl/ssl_cert_error_handler.cc',
970 'browser/ssl/ssl_cert_error_handler.h', 972 'browser/ssl/ssl_cert_error_handler.h',
971 'browser/ssl/ssl_client_auth_handler.cc', 973 'browser/ssl/ssl_client_auth_handler.cc',
972 'browser/ssl/ssl_client_auth_handler.h', 974 'browser/ssl/ssl_client_auth_handler.h',
973 'browser/ssl/ssl_error_handler.cc', 975 'browser/ssl/ssl_error_handler.cc',
974 'browser/ssl/ssl_error_handler.h', 976 'browser/ssl/ssl_error_handler.h',
975 'browser/ssl/ssl_host_state.cc', 977 'browser/ssl/ssl_host_state.cc',
976 'browser/ssl/ssl_host_state.h', 978 'browser/ssl/ssl_host_state.h',
977 'browser/ssl/ssl_manager.cc', 979 'browser/ssl/ssl_manager.cc',
978 'browser/ssl/ssl_manager.h', 980 'browser/ssl/ssl_manager.h',
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
1272 'link_settings': { 1274 'link_settings': {
1273 'libraries': [ 1275 'libraries': [
1274 '-ljnigraphics', 1276 '-ljnigraphics',
1275 ], 1277 ],
1276 }, 1278 },
1277 'sources/': [ 1279 'sources/': [
1278 ['exclude', '^browser/geolocation/network_location_provider\\.(cc|h)$'], 1280 ['exclude', '^browser/geolocation/network_location_provider\\.(cc|h)$'],
1279 ['exclude', '^browser/geolocation/network_location_request\\.(cc|h)$'], 1281 ['exclude', '^browser/geolocation/network_location_request\\.(cc|h)$'],
1280 ['exclude', '^browser/tracing/tracing_ui'], 1282 ['exclude', '^browser/tracing/tracing_ui'],
1281 ['exclude', '^browser/speech/'], 1283 ['exclude', '^browser/speech/'],
1282 ['include', '^browser/speech/speech_recognition_dispatcher_host'], 1284 ['include', '^browser/speech/speech_recognition_dispatcher_host\\.(cc|h) $'],
1283 ['include', '^browser/speech/speech_recognition_manager_impl'], 1285 ['include', '^browser/speech/speech_recognition_manager_impl\\.(cc|h)$'] ,
1284 ['include', '^browser/speech/speech_recognizer\\.h$'], 1286 ['include', '^browser/speech/speech_recognizer\\.h$'],
1287 ['include', '^browser/speech/speech_recognizer_impl_android\\.(cc|h)$'],
1285 ], 1288 ],
1286 }], 1289 }],
1287 ['OS=="mac"', { 1290 ['OS=="mac"', {
1288 'sources': [ 1291 'sources': [
1289 # Build necessary Mozilla sources 1292 # Build necessary Mozilla sources
1290 '../third_party/mozilla/ComplexTextInputPanel.h', 1293 '../third_party/mozilla/ComplexTextInputPanel.h',
1291 '../third_party/mozilla/ComplexTextInputPanel.mm', 1294 '../third_party/mozilla/ComplexTextInputPanel.mm',
1292 '../third_party/mozilla/NSPasteboard+Utils.h', 1295 '../third_party/mozilla/NSPasteboard+Utils.h',
1293 '../third_party/mozilla/NSPasteboard+Utils.mm', 1296 '../third_party/mozilla/NSPasteboard+Utils.mm',
1294 '../third_party/mozilla/NSString+Utils.h', 1297 '../third_party/mozilla/NSString+Utils.h',
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
1401 'defines': [ 1404 'defines': [
1402 'ENABLE_JAVA_BRIDGE', 1405 'ENABLE_JAVA_BRIDGE',
1403 ], 1406 ],
1404 }, { 1407 }, {
1405 'sources/': [ 1408 'sources/': [
1406 ['exclude', '^browser/renderer_host/java/'], 1409 ['exclude', '^browser/renderer_host/java/'],
1407 ], 1410 ],
1408 }], 1411 }],
1409 ['input_speech==0', { 1412 ['input_speech==0', {
1410 'sources/': [ 1413 'sources/': [
1411 ['exclude', '^browser/speech/input_tag_speech_dispatcher_host'], 1414 ['exclude', '^browser/speech/input_tag_speech_dispatcher_host\\.(cc|h)$' ],
1412 ], 1415 ],
1413 }, { # input_speech==1 1416 }, { # input_speech==1
1414 'dependencies': [ 1417 'dependencies': [
1415 '../third_party/flac/flac.gyp:libflac', 1418 '../third_party/flac/flac.gyp:libflac',
1416 '../third_party/speex/speex.gyp:libspeex', 1419 '../third_party/speex/speex.gyp:libspeex',
1417 ], 1420 ],
1418 }], 1421 }],
1419 ['linux_use_libgps==1', { 1422 ['linux_use_libgps==1', {
1420 'dependencies': [ 1423 'dependencies': [
1421 '../build/linux/system.gyp:libgps', 1424 '../build/linux/system.gyp:libgps',
1422 ], 1425 ],
1423 }], 1426 }],
1424 ], 1427 ],
1425 } 1428 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698