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.
|
|
|
|
|
2020-05-29 20:40:31 +08:00
|
|
|
# sandboxed_api/tools/filewrapper:filewrapper
|
2019-05-06 20:03:29 +08:00
|
|
|
add_executable(filewrapper
|
|
|
|
filewrapper.cc
|
|
|
|
)
|
|
|
|
target_link_libraries(filewrapper PRIVATE
|
|
|
|
absl::strings
|
2020-12-15 01:15:40 +08:00
|
|
|
absl::str_format
|
2021-01-14 01:25:25 +08:00
|
|
|
sapi::fileops
|
|
|
|
sapi::strerror
|
2019-05-06 20:03:29 +08:00
|
|
|
sapi::base
|
|
|
|
sapi::raw_logging
|
|
|
|
)
|
|
|
|
|
|
|
|
sapi_cc_embed_data(NAME filewrapper_embedded
|
|
|
|
NAMESPACE ""
|
|
|
|
SOURCES testdata/filewrapper_embedded.bin
|
|
|
|
)
|
|
|
|
|
2022-04-21 16:17:08 +08:00
|
|
|
if(BUILD_TESTING AND SAPI_BUILD_TESTING)
|
2020-05-29 20:40:31 +08:00
|
|
|
# sandboxed_api/tools/filewrapper:filewrapper_test
|
2020-12-14 17:13:03 +08:00
|
|
|
add_executable(sapi_filewrapper_test
|
2019-07-15 19:42:39 +08:00
|
|
|
filewrapper_test.cc
|
|
|
|
)
|
2020-12-14 17:13:03 +08:00
|
|
|
set_target_properties(sapi_filewrapper_test PROPERTIES
|
|
|
|
OUTPUT_NAME filewrapper_test
|
|
|
|
)
|
2019-07-15 19:42:39 +08:00
|
|
|
configure_file(testdata/filewrapper_embedded.bin
|
|
|
|
testdata/filewrapper_embedded.bin COPYONLY)
|
2020-12-14 17:13:03 +08:00
|
|
|
target_link_libraries(sapi_filewrapper_test PRIVATE
|
2019-07-15 19:42:39 +08:00
|
|
|
absl::strings
|
|
|
|
filewrapper_embedded
|
2021-01-14 01:25:25 +08:00
|
|
|
sapi::file_helpers
|
|
|
|
sapi::fileops
|
|
|
|
sapi::testing
|
2019-07-30 21:48:16 +08:00
|
|
|
sapi::status_matchers
|
2019-07-15 19:42:39 +08:00
|
|
|
sapi::test_main
|
|
|
|
)
|
2020-12-15 01:15:40 +08:00
|
|
|
gtest_discover_tests_xcompile(sapi_filewrapper_test PROPERTIES
|
2019-07-15 19:42:39 +08:00
|
|
|
ENVIRONMENT "TEST_TMPDIR=/tmp"
|
|
|
|
ENVIRONMENT "TEST_SRCDIR=${PROJECT_BINARY_DIR}"
|
|
|
|
)
|
|
|
|
endif()
|