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
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
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
|
|
|
|
sandbox2::fileops
|
|
|
|
sandbox2::strerror
|
|
|
|
sapi::base
|
|
|
|
sapi::raw_logging
|
|
|
|
)
|
|
|
|
|
|
|
|
sapi_cc_embed_data(NAME filewrapper_embedded
|
|
|
|
NAMESPACE ""
|
|
|
|
SOURCES testdata/filewrapper_embedded.bin
|
|
|
|
)
|
|
|
|
|
2019-07-15 19:42:39 +08:00
|
|
|
if(SAPI_ENABLE_TESTS)
|
2020-05-29 20:40:31 +08:00
|
|
|
# sandboxed_api/tools/filewrapper:filewrapper_test
|
2019-07-15 19:42:39 +08:00
|
|
|
add_executable(filewrapper_test
|
|
|
|
filewrapper_test.cc
|
|
|
|
)
|
|
|
|
configure_file(testdata/filewrapper_embedded.bin
|
|
|
|
testdata/filewrapper_embedded.bin COPYONLY)
|
|
|
|
target_link_libraries(filewrapper_test PRIVATE
|
|
|
|
absl::strings
|
|
|
|
filewrapper_embedded
|
|
|
|
sandbox2::file_helpers
|
|
|
|
sandbox2::fileops
|
|
|
|
sandbox2::testing
|
2019-07-30 21:48:16 +08:00
|
|
|
sapi::status_matchers
|
2019-07-15 19:42:39 +08:00
|
|
|
sapi::test_main
|
|
|
|
)
|
|
|
|
gtest_discover_tests(filewrapper_test PROPERTIES
|
|
|
|
ENVIRONMENT "TEST_TMPDIR=/tmp"
|
|
|
|
ENVIRONMENT "TEST_SRCDIR=${PROJECT_BINARY_DIR}"
|
|
|
|
)
|
|
|
|
endif()
|