-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add v8runtime export to the def file and a dummy implementation for G…
…itHub (#2472)
- Loading branch information
Showing
4 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#include <memory> | ||
#include <jsi/jsi.h> | ||
|
||
namespace facebook { | ||
namespace v8runtime { | ||
|
||
// This exists just to satisfy the export requirements, so that we can share the same .def file between GitHub and the Office internal build system | ||
std::unique_ptr<jsi::Runtime> makeV8Runtime() | ||
{ | ||
std::abort(); | ||
} | ||
|
||
} // namespace v8runtime | ||
} // namespace facebook |