tdesktop/Telegram/gyp/tests/tests.gyp

131 lines
3.8 KiB
Plaintext
Raw Normal View History

# This file is part of Telegram Desktop,
# the official desktop version of Telegram messaging app, see https://telegram.org
#
# Telegram Desktop is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# It is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# In addition, as a special exception, the copyright holders give permission
# to link the code of portions of this program with the OpenSSL library.
#
# Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
# Copyright (c) 2014 John Preston, https://desktop.telegram.org
{
'includes': [
'../common.gypi',
],
'variables': {
'libs_loc': '../../../../Libraries',
'src_loc': '../../SourceFiles',
'submodules_loc': '../../ThirdParty',
'mac_target': '10.10',
'list_tests_command': 'python <(DEPTH)/tests/list_tests.py --input <(DEPTH)/tests/tests_list.txt',
},
'targets': [{
'target_name': 'tests',
'type': 'none',
'includes': [
'../common.gypi',
],
'dependencies': [
'<!@(<(list_tests_command))',
],
'sources': [
'<!@(<(list_tests_command) --sources)',
],
'rules': [{
'rule_name': 'run_tests',
'extension': 'test',
'inputs': [
'<(PRODUCT_DIR)/<(RULE_INPUT_ROOT)<(exe_ext)',
],
'outputs': [
'<(SHARED_INTERMEDIATE_DIR)/<(RULE_INPUT_ROOT).timestamp',
],
'action': [
'<(PRODUCT_DIR)/<(RULE_INPUT_ROOT)<(exe_ext)',
'--touch', '<(SHARED_INTERMEDIATE_DIR)/<(RULE_INPUT_ROOT).timestamp',
],
'message': 'Running <(RULE_INPUT_ROOT)..',
}]
}, {
'target_name': 'tests_algorithm',
'includes': [
'common_test.gypi',
],
'sources': [
'<(src_loc)/base/algorithm.h',
'<(src_loc)/base/algorithm_tests.cpp',
],
}, {
'target_name': 'tests_flags',
'includes': [
'common_test.gypi',
],
'sources': [
'<(src_loc)/base/flags.h',
'<(src_loc)/base/flags_tests.cpp',
],
}, {
'target_name': 'tests_flat_map',
'includes': [
'common_test.gypi',
],
'sources': [
'<(src_loc)/base/flat_map.h',
'<(src_loc)/base/flat_map_tests.cpp',
],
}, {
'target_name': 'tests_flat_set',
'includes': [
'common_test.gypi',
],
'sources': [
'<(src_loc)/base/flat_set.h',
'<(src_loc)/base/flat_set_tests.cpp',
],
}, {
2017-09-12 13:58:14 +00:00
'target_name': 'tests_rpl',
'includes': [
'common_test.gypi',
],
'sources': [
'<(src_loc)/rpl/details/callable.h',
2017-09-27 11:16:05 +00:00
'<(src_loc)/rpl/details/superset_type.h',
'<(src_loc)/rpl/details/type_list.h',
'<(src_loc)/rpl/after_next.h',
2017-09-12 13:58:14 +00:00
'<(src_loc)/rpl/before_next.h',
'<(src_loc)/rpl/combine.h',
2017-09-20 12:24:13 +00:00
'<(src_loc)/rpl/combine_previous.h',
2017-09-12 13:58:14 +00:00
'<(src_loc)/rpl/complete.h',
'<(src_loc)/rpl/consumer.h',
2017-09-12 13:58:14 +00:00
'<(src_loc)/rpl/deferred.h',
'<(src_loc)/rpl/distinct_until_changed.h',
'<(src_loc)/rpl/event_stream.h',
2017-09-12 13:58:14 +00:00
'<(src_loc)/rpl/fail.h',
'<(src_loc)/rpl/filter.h',
'<(src_loc)/rpl/flatten_latest.h',
'<(src_loc)/rpl/lifetime.h',
2017-09-12 13:58:14 +00:00
'<(src_loc)/rpl/map.h',
'<(src_loc)/rpl/mappers.h',
2017-09-12 13:58:14 +00:00
'<(src_loc)/rpl/never.h',
'<(src_loc)/rpl/operators_tests.cpp',
'<(src_loc)/rpl/producer.h',
'<(src_loc)/rpl/producer_tests.cpp',
'<(src_loc)/rpl/range.h',
2017-09-12 13:58:14 +00:00
'<(src_loc)/rpl/rpl.h',
2017-10-01 09:39:07 +00:00
'<(src_loc)/rpl/take.h',
2017-09-12 13:58:14 +00:00
'<(src_loc)/rpl/then.h',
2017-09-27 11:16:05 +00:00
'<(src_loc)/rpl/type_erased.h',
'<(src_loc)/rpl/variable.h',
],
}],
}