blob: c589c1694eefd14d4ebb1ac03301ef2eda7de7a9 [file] [log] [blame]
# Copyright 2017 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'target_defaults': {
'variables': {
'deps': [
'libbrillo-<(libbase_ver)',
'libcap',
'libchrome-<(libbase_ver)',
'libminijail',
],
'enable_exceptions': 1,
},
},
'targets': [
{
'target_name': 'container_config_parser',
'type': 'shared_library',
'sources': [
'container_config_parser.cc',
],
},
{
'target_name': 'run_oci',
'type': 'executable',
'variables': {
'deps': [
'libcontainer',
],
},
'sources': [
'container_config_parser.cc',
'run_oci.cc',
'run_oci_utils.cc',
],
},
],
'conditions': [
['USE_test == 1', {
'targets': [
{
'target_name': 'container_config_parser_unittest',
'type': 'executable',
'includes': ['../common-mk/common_test.gypi'],
'dependencies': [
'../common-mk/testrunner.gyp:testrunner',
],
'variables': {
'deps': [
'libchrome-test-<(libbase_ver)',
],
},
'sources': [
'container_config_parser.cc',
'container_config_parser_unittest.cc',
],
},
{
'target_name': 'run_oci_unittest',
'type': 'executable',
'includes': ['../common-mk/common_test.gypi'],
'dependencies': [
'../common-mk/testrunner.gyp:testrunner',
],
'variables': {
'deps': [
'libchrome-test-<(libbase_ver)',
],
},
'sources': [
'run_oci_unittest.cc',
'run_oci_utils.cc',
],
},
]},
],
],
}