blob: 48897e9b909c84a73189eae5f57b34993ef6fbe5 [file] [log] [blame]
#
# Copyright (C) 2015 The Android Open Source Project
#
# 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.
#
{
'target_defaults': {
'variables': {
'deps': [
'libchrome-<(libbase_ver)',
'libbrillo-<(libbase_ver)',
'libshill-net-<(libbase_ver)',
],
},
'cflags': [
'-Wextra',
'-Wno-unused-parameter', # base/lazy_instance.h, etc.
],
'cflags_cc': [
'-fno-strict-aliasing',
'-Wno-missing-field-initializers', # for LAZY_INSTANCE_INITIALIZER
'-Wno-unused-const-variable',
],
'include_dirs': [
# We need this include dir because we include all the local code as
# "dhcp_client/...".
'<(platform2_root)/../aosp/system/connectivity',
],
},
'targets': [
{
'target_name': 'dhcp_client-adaptors',
'type': 'none',
'variables': {
'dbus_adaptors_out_dir': 'include/dbus_bindings',
'dbus_xml_extension': 'dbus-xml',
},
'sources': [
'dbus_bindings/org.chromium.dhcp_client.Manager.dbus-xml',
'dbus_bindings/org.chromium.dhcp_client.Service.dbus-xml',
],
'includes': ['../../../../platform2/common-mk/generate-dbus-adaptors.gypi'],
},
{
'target_name': 'libdhcp_client',
'type': 'static_library',
'dependencies': [
'dhcp_client-adaptors',
],
'variables': {
'exported_deps': [
],
'deps': ['<@(exported_deps)'],
},
'all_dependent_settings': {
'variables': {
'deps': [
'<@(exported_deps)',
],
},
},
'sources': [
'daemon.cc',
'dbus/dbus_control.cc',
'dbus/manager_dbus_adaptor.cc',
'dbus/service_dbus_adaptor.cc',
'device_info.cc',
'dhcp_message.cc',
'dhcp_options_parser.cc',
'dhcp_options_writer.cc',
'dhcpv4.cc',
'file_io.cc',
'message_loop_event_dispatcher.cc',
'manager.cc',
'service.cc',
'socket_util.cc',
],
},
{
'target_name': 'dhcp_client',
'type': 'executable',
'dependencies': ['libdhcp_client'],
'sources': [
'main.cc',
],
},
# dhcp client library generated headers. Used by other daemons to
# interact with dhcp client.
{
'target_name': 'libdhcp_client-client-headers',
'type': 'none',
'actions': [
{
'action_name': 'libdhcp_client-client-dbus-proxies',
'variables': {
'dbus_service_config': 'dbus_bindings/dbus-service-config.json',
'proxy_output_file': 'include/dhcp_client/dbus-proxies.h',
'mock_output_file': 'include/dhcp_client/dbus-proxy-mocks.h',
'proxy_path_in_mocks': 'dhcp_client/dbus-proxies.h',
},
'sources': [
'dbus_bindings/org.chromium.dhcp_client.Manager.dbus-xml',
'dbus_bindings/org.chromium.dhcp_client.Service.dbus-xml',
],
'includes': ['../../../../platform2/common-mk/generate-dbus-proxies.gypi'],
},
]
},
],
'conditions': [
['USE_test == 1', {
'targets': [
{
'target_name': 'dhcp_client_testrunner',
'type': 'executable',
'dependencies': ['libdhcp_client'],
'includes': ['../../../../platform2/common-mk/common_test.gypi'],
'sources': [
'device_info_unittest.cc',
'dhcp_message_unittest.cc',
'dhcp_options_parser_unittest.cc',
'dhcp_options_writer_unittest.cc',
'file_io_unittest.cc',
'testrunner.cc',
],
},
],
}],
],
}