blob: 5f9ba9a46eb140a74c8b788350484014155e0f34 [file] [log] [blame]
# Copyright 2010-2015, Google Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following disclaimer
# in the documentation and/or other materials provided with the
# distribution.
# * Neither the name of Google Inc. nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
{
'variables': {
'relative_dir': 'session',
'gen_out_dir': '<(SHARED_INTERMEDIATE_DIR)/<(relative_dir)',
},
'targets': [
{
'target_name': 'session',
'type': 'static_library',
'sources': [
'session.cc',
'session_converter.cc',
],
'dependencies': [
'../base/base.gyp:base',
'../config/config.gyp:config_handler',
'../config/config.gyp:config_protocol',
'../converter/converter_base.gyp:converter_util',
'../transliteration/transliteration.gyp:transliteration',
'../usage_stats/usage_stats_base.gyp:usage_stats',
'session_base.gyp:key_parser',
'session_base.gyp:keymap',
'session_base.gyp:keymap_factory',
'session_base.gyp:session_protocol',
'session_base.gyp:session_usage_stats_util',
'session_internal',
],
},
{
'target_name': 'session_internal',
'type' : 'static_library',
'hard_dependency': 1,
'sources': [
'internal/candidate_list.cc',
'internal/ime_context.cc',
'internal/session_output.cc',
'internal/key_event_transformer.cc',
],
'dependencies': [
'../base/base.gyp:base',
'../composer/composer.gyp:composer',
'../config/config.gyp:config_handler',
'../config/config.gyp:config_protocol',
'session_base.gyp:session_protocol',
],
},
{
'target_name': 'session_handler',
'type': 'static_library',
'sources': [
'session_handler.cc',
'session_observer_handler.cc',
'session_watch_dog.cc',
],
'dependencies': [
'../client/client.gyp:client',
'../engine/engine.gyp:engine_factory',
'../composer/composer.gyp:composer',
'../config/config.gyp:config_handler',
'../config/config.gyp:config_protocol',
'../dictionary/dictionary_base.gyp:dictionary_protocol',
'../dictionary/dictionary_base.gyp:user_dictionary',
'../usage_stats/usage_stats_base.gyp:usage_stats',
'session_base.gyp:generic_storage_manager',
'session_base.gyp:session_protocol',
],
'conditions': [
['(target_platform=="NaCl" and _toolset=="target") or target_platform=="Android"', {
'sources!': [
'session_watch_dog.cc',
],
'dependencies!': [
'../client/client.gyp:client',
],
}],
],
},
{
'target_name': 'session_usage_observer',
'type': 'static_library',
'hard_dependency': 1,
'sources': [
'session_usage_observer.cc',
],
'dependencies': [
'../base/base.gyp:base',
'../config/config.gyp:stats_config_util',
'../usage_stats/usage_stats_base.gyp:usage_stats',
'../usage_stats/usage_stats_base.gyp:usage_stats_protocol',
'session_base.gyp:session_protocol',
],
},
{
'target_name': 'session_server',
'type': 'static_library',
'sources': [
'session_server.cc',
],
'dependencies': [
# CAUTION: Don't forget to update android.gyp:mozc target as well!
# The target has almost the same dependency so if you update this
# dependency list you will have to update Android's.
'../base/base.gyp:base',
'../usage_stats/usage_stats.gyp:usage_stats_uploader',
'session_base.gyp:session_protocol',
'session_handler',
'session_usage_observer',
],
},
{
'target_name': 'random_keyevents_generator',
'type': 'static_library',
'sources': [
'<(gen_out_dir)/session_stress_test_data.h',
'random_keyevents_generator.cc',
],
'dependencies': [
'../config/config.gyp:config_protocol',
'gen_session_stress_test_data#host',
'session',
'session_base.gyp:session_protocol',
],
},
{
'target_name': 'session_server_main',
'type': 'executable',
'sources': [
'session_server_main.cc',
],
'dependencies': [
'session_server',
],
},
{
'target_name': 'gen_session_stress_test_data',
'type': 'none',
'toolsets': ['host'],
'actions': [
{
'action_name': 'gen_session_stress_test_data',
'inputs': [
'../data/test/stress_test/sentences.txt',
],
'outputs': [
'<(gen_out_dir)/session_stress_test_data.h'
],
'action': [
'python', '../build_tools/redirect.py',
'<(gen_out_dir)/session_stress_test_data.h',
'gen_session_stress_test_data.py',
'../data/test/stress_test/sentences.txt',
],
'message': 'Generating <(gen_out_dir)/session_stress_test_data.h',
},
],
},
],
}