blob: 742a1919b9b34a1350fa6fd01c51f4de1f81c786 [file] [log] [blame]
{
'target_defaults': {
'variables': {
'deps': [
'libchrome-<(libbase_ver)',
'libchromeos-<(libbase_ver)',
],
},
'include_dirs': [
'lib',
],
},
'targets': [
{
'target_name': 'soma-proto-lib',
'type': 'static_library',
'variables': {
'exported_deps': [
'libprotobinder',
'protobuf-lite',
],
'proto_in_dir': 'idl',
'proto_out_dir': 'include/soma/proto_bindings',
'gen_bidl': 1,
},
'all_dependent_settings': {
'variables': {
'deps': [
'<@(exported_deps)',
],
},
},
'sources': [
'<(proto_in_dir)/soma_container_spec.proto',
'<(proto_in_dir)/soma.proto',
],
'includes': ['../common-mk/protoc.gypi'],
},
{
'target_name': 'libsomad',
'type': 'static_library',
'dependencies': [
'soma-proto-lib',
],
'sources': [
'soma.cc',
],
},
{
'target_name': 'libsoma-static', # So symbols are visible to tests.
'type': 'static_library',
'dependencies': [
'soma-proto-lib',
],
'sources': [
'lib/soma/annotations.cc',
'lib/soma/container_spec_helpers.cc',
'lib/soma/device_filter.cc',
'lib/soma/isolator_parser.cc',
'lib/soma/namespace.cc',
'lib/soma/port.cc',
],
},
{
'target_name': 'libsoma',
'type': 'shared_library',
'dependencies': [
'libsoma-static',
],
'sources': [
'lib/soma/container_spec_reader.cc',
'lib/soma/read_only_container_spec.cc',
'lib/soma/userdb.cc',
],
},
{
'target_name': 'somad',
'type': 'executable',
'dependencies': [
'libsomad',
'libsoma',
],
'sources': [
'main.cc',
],
'variables': {
'deps': [
'libpsyche',
],
},
},
],
'conditions': [
['USE_test == 1', {
'targets': [
{
'target_name': 'somad_test',
'type': 'executable',
'includes': ['../common-mk/common_test.gypi'],
'defines': ['UNIT_TEST'],
'dependencies': [
'libsomad',
'libsoma',
],
'sources': [
'lib/soma/fake_userdb.cc',
'soma_testrunner.cc',
'soma_unittest.cc',
],
},
{
'target_name': 'libsoma_test',
'type': 'executable',
'includes': ['../common-mk/common_test.gypi'],
'defines': ['UNIT_TEST'],
'dependencies': [
'libsoma-static',
'libsoma',
],
'sources': [
'lib/soma/container_spec_reader_unittest.cc',
'lib/soma/fake_userdb.cc',
'lib/soma/libsoma_testrunner.cc',
'lib/soma/read_only_container_spec_unittest.cc',
],
},
],
}],
],
}