1 // Copyright 2019 Google LLC 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // https://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 #ifndef SANDBOXED_API_UTIL_RUNFILES_H_ 16 #define SANDBOXED_API_UTIL_RUNFILES_H_ 17 18 #include <string> 19 20 #include "absl/strings/string_view.h" 21 22 namespace sapi { 23 24 // Returns the file path pointing to a resource file. The relative_path argument 25 // should be relative to the runfiles directory. 26 std::string GetDataDependencyFilePath(absl::string_view relative_path); 27 28 namespace internal { 29 30 // Like ::sapi::GetDataDependencyFilePath(), but prepends the location of the 31 // Sandboxed API root runfiles path. 32 std::string GetSapiDataDependencyFilePath(absl::string_view relative_path); 33 34 } // namespace internal 35 } // namespace sapi 36 37 #endif // SANDBOXED_API_UTIL_RUNFILES_H_ 38