2020-01-17 21:05:03 +08:00
|
|
|
# Copyright 2019 Google LLC
|
2019-05-06 20:03:29 +08:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
2022-01-28 17:38:27 +08:00
|
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
2019-05-06 20:03:29 +08:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
# sandboxed_api/sandbox2/util:bpf_helper
|
2020-12-15 01:15:40 +08:00
|
|
|
add_library(sandbox2_util_bpf_helper ${SAPI_LIB_TYPE}
|
2019-05-06 20:03:29 +08:00
|
|
|
bpf_helper.c
|
|
|
|
bpf_helper.h
|
|
|
|
)
|
|
|
|
add_library(sandbox2::bpf_helper ALIAS sandbox2_util_bpf_helper)
|
|
|
|
target_link_libraries(sandbox2_util_bpf_helper PRIVATE
|
|
|
|
sapi::base
|
|
|
|
)
|
|
|
|
|
|
|
|
# sandboxed_api/sandbox2/util:minielf
|
2020-12-15 01:15:40 +08:00
|
|
|
add_library(sandbox2_util_minielf ${SAPI_LIB_TYPE}
|
2019-05-06 20:03:29 +08:00
|
|
|
minielf.cc
|
|
|
|
minielf.h
|
|
|
|
)
|
|
|
|
add_library(sandbox2::minielf ALIAS sandbox2_util_minielf)
|
|
|
|
target_link_libraries(sandbox2_util_minielf PRIVATE
|
2020-02-28 01:23:44 +08:00
|
|
|
absl::status
|
2019-05-06 20:03:29 +08:00
|
|
|
absl::strings
|
2021-01-14 01:25:25 +08:00
|
|
|
sapi::strerror
|
2019-05-06 20:03:29 +08:00
|
|
|
sandbox2::util
|
|
|
|
sapi::base
|
|
|
|
sapi::raw_logging
|
|
|
|
)
|
|
|
|
|
|
|
|
# sandboxed_api/sandbox2/util:maps_parser
|
2020-12-15 01:15:40 +08:00
|
|
|
add_library(sandbox2_util_maps_parser ${SAPI_LIB_TYPE}
|
2019-05-06 20:03:29 +08:00
|
|
|
maps_parser.cc
|
|
|
|
maps_parser.h
|
|
|
|
)
|
|
|
|
add_library(sandbox2::maps_parser ALIAS sandbox2_util_maps_parser)
|
2020-12-15 01:15:40 +08:00
|
|
|
target_link_libraries(sandbox2_util_maps_parser
|
|
|
|
PRIVATE absl::status
|
|
|
|
absl::strings
|
|
|
|
sapi::base
|
|
|
|
PUBLIC absl::statusor
|
2019-05-06 20:03:29 +08:00
|
|
|
)
|
|
|
|
|
2022-04-21 16:17:08 +08:00
|
|
|
if(BUILD_TESTING AND SAPI_BUILD_TESTING)
|
2019-07-15 19:42:39 +08:00
|
|
|
# sandboxed_api/sandbox2/util:minielf_test
|
2020-12-14 17:13:03 +08:00
|
|
|
add_executable(sandbox2_minielf_test
|
2019-07-15 19:42:39 +08:00
|
|
|
minielf_test.cc
|
|
|
|
)
|
2020-12-14 17:13:03 +08:00
|
|
|
set_target_properties(sandbox2_minielf_test PROPERTIES
|
|
|
|
OUTPUT_NAME minielf_test
|
|
|
|
)
|
2019-07-15 19:42:39 +08:00
|
|
|
configure_file(testdata/hello_world
|
|
|
|
testdata/hello_world COPYONLY)
|
|
|
|
configure_file(testdata/chrome_grte_header
|
|
|
|
testdata/chrome_grte_header COPYONLY)
|
2020-12-15 01:15:40 +08:00
|
|
|
target_link_libraries(sandbox2_minielf_test
|
|
|
|
PRIVATE absl::algorithm_container
|
|
|
|
absl::strings
|
2021-01-14 01:25:25 +08:00
|
|
|
sapi::file_helpers
|
2020-12-15 01:15:40 +08:00
|
|
|
sandbox2::maps_parser
|
|
|
|
sandbox2::minielf
|
2021-01-14 01:25:25 +08:00
|
|
|
sapi::testing
|
2020-12-15 01:15:40 +08:00
|
|
|
sapi::status_matchers
|
|
|
|
sapi::test_main
|
|
|
|
PUBLIC absl::statusor
|
|
|
|
)
|
|
|
|
gtest_discover_tests_xcompile(sandbox2_minielf_test PROPERTIES
|
2019-07-15 19:42:39 +08:00
|
|
|
ENVIRONMENT "TEST_TMPDIR=/tmp"
|
|
|
|
ENVIRONMENT "TEST_SRCDIR=${PROJECT_BINARY_DIR}"
|
|
|
|
)
|
|
|
|
|
|
|
|
# sandboxed_api/sandbox2/util:maps_parser_test
|
2020-12-14 17:13:03 +08:00
|
|
|
add_executable(sandbox2_maps_parser_test
|
2019-07-15 19:42:39 +08:00
|
|
|
maps_parser_test.cc
|
|
|
|
)
|
2020-12-14 17:13:03 +08:00
|
|
|
set_target_properties(sandbox2_maps_parser_test PROPERTIES
|
|
|
|
OUTPUT_NAME maps_parser_test
|
|
|
|
)
|
|
|
|
target_link_libraries(sandbox2_maps_parser_test PRIVATE
|
2019-07-15 19:42:39 +08:00
|
|
|
sandbox2::maps_parser
|
|
|
|
sapi::status_matchers
|
|
|
|
sapi::test_main
|
|
|
|
)
|
2020-12-15 01:15:40 +08:00
|
|
|
gtest_discover_tests_xcompile(sandbox2_maps_parser_test)
|
2019-07-15 19:42:39 +08:00
|
|
|
endif()
|