2014-08-01 12:48:28 -04:00
|
|
|
# Copyright 2014 The Crashpad Authors. All rights reserved.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
{
|
|
|
|
'targets': [
|
|
|
|
{
|
|
|
|
'target_name': 'util',
|
|
|
|
'type': 'static_library',
|
|
|
|
'dependencies': [
|
|
|
|
'../compat/compat.gyp:compat',
|
|
|
|
'../third_party/mini_chromium/mini_chromium/base/base.gyp:base',
|
|
|
|
],
|
|
|
|
'include_dirs': [
|
|
|
|
'..',
|
|
|
|
'<(INTERMEDIATE_DIR)',
|
|
|
|
],
|
|
|
|
'sources': [
|
|
|
|
'file/fd_io.cc',
|
|
|
|
'file/fd_io.h',
|
|
|
|
'file/file_writer.cc',
|
|
|
|
'file/file_writer.h',
|
|
|
|
'file/string_file_writer.cc',
|
|
|
|
'file/string_file_writer.h',
|
2014-08-03 18:53:10 -04:00
|
|
|
'mac/launchd.h',
|
|
|
|
'mac/launchd.mm',
|
2014-08-03 18:48:40 -04:00
|
|
|
'mach/task_memory.cc',
|
|
|
|
'mach/task_memory.h',
|
2014-08-14 09:51:26 -07:00
|
|
|
'misc/initialization_state.h',
|
|
|
|
'misc/initialization_state_dcheck.cc',
|
|
|
|
'misc/initialization_state_dcheck.h',
|
2014-08-01 14:39:55 -04:00
|
|
|
'misc/uuid.cc',
|
|
|
|
'misc/uuid.h',
|
2014-08-14 09:57:19 -07:00
|
|
|
'posix/process_util.h',
|
|
|
|
'posix/process_util_mac.cc',
|
2014-08-01 14:39:55 -04:00
|
|
|
'stdlib/cxx.h',
|
2014-08-03 18:53:10 -04:00
|
|
|
'stdlib/objc.h',
|
2014-08-01 14:39:55 -04:00
|
|
|
'stdlib/strlcpy.cc',
|
|
|
|
'stdlib/strlcpy.h',
|
2014-08-01 12:48:28 -04:00
|
|
|
],
|
|
|
|
},
|
2014-08-03 18:48:40 -04:00
|
|
|
{
|
|
|
|
'target_name': 'util_test_lib',
|
|
|
|
'type': 'static_library',
|
|
|
|
'dependencies': [
|
|
|
|
'../compat/compat.gyp:compat',
|
|
|
|
'../third_party/mini_chromium/mini_chromium/base/base.gyp:base',
|
|
|
|
'util',
|
|
|
|
],
|
|
|
|
'include_dirs': [
|
|
|
|
'..',
|
|
|
|
],
|
|
|
|
'sources': [
|
|
|
|
'test/errors.cc',
|
|
|
|
'test/errors.h',
|
|
|
|
'test/mac/mach_errors.cc',
|
|
|
|
'test/mac/mach_errors.h',
|
|
|
|
],
|
|
|
|
},
|
2014-08-01 12:48:28 -04:00
|
|
|
{
|
|
|
|
'target_name': 'util_test',
|
|
|
|
'type': 'executable',
|
|
|
|
'dependencies': [
|
|
|
|
'util',
|
2014-08-03 18:48:40 -04:00
|
|
|
'util_test_lib',
|
2014-08-01 12:48:28 -04:00
|
|
|
'../compat/compat.gyp:compat',
|
|
|
|
'../third_party/gtest/gtest.gyp:gtest',
|
2014-08-13 15:28:59 -07:00
|
|
|
'../third_party/gtest/gtest.gyp:gtest_main',
|
2014-08-01 12:48:28 -04:00
|
|
|
'../third_party/mini_chromium/mini_chromium/base/base.gyp:base',
|
|
|
|
],
|
|
|
|
'include_dirs': [
|
|
|
|
'..',
|
|
|
|
],
|
|
|
|
'sources': [
|
|
|
|
'file/string_file_writer_test.cc',
|
2014-08-03 18:53:10 -04:00
|
|
|
'mac/launchd_test.mm',
|
2014-08-03 18:48:40 -04:00
|
|
|
'mach/task_memory_test.cc',
|
2014-08-14 09:51:26 -07:00
|
|
|
'misc/initialization_state_dcheck_test.cc',
|
|
|
|
'misc/initialization_state_test.cc',
|
2014-08-01 14:39:55 -04:00
|
|
|
'misc/uuid_test.cc',
|
2014-08-14 09:57:19 -07:00
|
|
|
'posix/process_util_test.cc',
|
2014-08-01 14:39:55 -04:00
|
|
|
'stdlib/strlcpy_test.cc',
|
2014-08-01 12:48:28 -04:00
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|