blob: 489ac3bea7b0db5cef204050af055ad18d0abd69 [file] [log] [blame]
# Copyright 2016 The Cobalt Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
{
'variables': {
'sb_pedantic_warnings': 1,
},
'targets': [
{
'target_name': 'speech',
'type': 'static_library',
'msvs_disabled_warnings': [
# Dereferencing NULL pointer in generated file
# google_streaming_api.pb.cc.
6011,
],
'sources': [
'audio_encoder_flac.cc',
'audio_encoder_flac.h',
'cobalt_speech_recognizer.cc',
'cobalt_speech_recognizer.h',
'endpointer_delegate.cc',
'endpointer_delegate.h',
'google_speech_service.cc',
'google_speech_service.h',
'google_streaming_api.pb.cc',
'google_streaming_api.pb.h',
'google_streaming_api.pb.proto',
'microphone.h',
'microphone_manager.cc',
'microphone_manager.h',
'speech_configuration.h',
'speech_recognition.cc',
'speech_recognition.h',
'speech_recognition_alternative.h',
'speech_recognition_config.h',
'speech_recognition_error.cc',
'speech_recognition_error.h',
'speech_recognition_event.cc',
'speech_recognition_event.h',
'speech_recognition_manager.cc',
'speech_recognition_manager.h',
'speech_recognition_result.cc',
'speech_recognition_result.h',
'speech_recognition_result_list.cc',
'speech_recognition_result_list.h',
'speech_recognizer.cc',
'speech_recognizer.h',
'speech_synthesis.cc',
'speech_synthesis.h',
'speech_synthesis_error_event.h',
'speech_synthesis_event.cc',
'speech_synthesis_event.h',
'speech_synthesis_utterance.cc',
'speech_synthesis_utterance.h',
'speech_synthesis_voice.h',
'starboard_speech_recognizer.cc',
'starboard_speech_recognizer.h',
],
'dependencies': [
'<(DEPTH)/cobalt/base/base.gyp:base',
'<(DEPTH)/cobalt/browser/browser_bindings_gen.gyp:generated_types',
'<(DEPTH)/cobalt/network/network.gyp:network',
'<(DEPTH)/content/browser/speech/speech.gyp:speech',
'<(DEPTH)/third_party/flac/flac.gyp:libflac',
'<(DEPTH)/third_party/protobuf/protobuf.gyp:protobuf_lite',
],
'export_dependent_settings': [
# Additionally, ensure that the include directories for generated
# headers are put on the include directories for targets that depend
# on this one.
'<(DEPTH)/cobalt/browser/browser_bindings_gen.gyp:generated_types',
],
'include_dirs': [
# Get protobuf headers from the chromium tree.
'<(DEPTH)/third_party/protobuf/src',
],
'conditions': [
['OS=="starboard"', {
'sources': [
'microphone_starboard.cc',
'microphone_starboard.h',
],
}],
['OS=="starboard" and enable_fake_microphone == 1', {
'sources': [
'microphone_fake.cc',
'microphone_fake.h',
'url_fetcher_fake.cc',
'url_fetcher_fake.h',
],
'dependencies': [
'<(DEPTH)/cobalt/audio/audio.gyp:audio',
],
'defines': [
'ENABLE_FAKE_MICROPHONE',
],
'direct_dependent_settings': {
'defines': [ 'ENABLE_FAKE_MICROPHONE', ],
},
}],
['cobalt_copy_test_data == 1', {
'variables': {
'content_test_input_files': [
'<(DEPTH)/cobalt/speech/testdata/',
],
'content_test_output_subdir': 'cobalt/speech/testdata/',
},
'includes': [ '<(DEPTH)/starboard/build/copy_test_data.gypi' ],
}],
],
},
],
}