Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
56195b6
feat: Update google test.
ChasonTang Aug 18, 2022
7a092b8
feat: Update hermes.
ChasonTang Aug 19, 2022
27ebab4
feat: Complete basic BUILD.gn file.
ChasonTang Aug 20, 2022
5218d0e
feat: Update folly to 2021.06.28.00
ChasonTang Aug 20, 2022
331e0f5
feat: Complete jsi hermes debugger_api.
ChasonTang Aug 20, 2022
1d4d155
feat: Remove boost-for-react-native.
ChasonTang Aug 21, 2022
b734c1f
chore: Update LICENSE.
ChasonTang Aug 21, 2022
7ebc90f
feat: Add fbjni.
ChasonTang Aug 21, 2022
6969a1c
chore: Update README.md.
ChasonTang Aug 22, 2022
d870596
feat: Use lto to minimize release build.
ChasonTang Aug 23, 2022
2b456dd
fix: Fix typo.
ChasonTang Aug 23, 2022
dc35fa2
feat: Add jsi_dynamic jsinspector double_conversion fmt folly.
ChasonTang Aug 23, 2022
82f06d9
feat: Modify .gitignore to exclude boost.
ChasonTang Aug 23, 2022
bc7d1e9
feat: Add bitcode as bitcode if condition.
ChasonTang Aug 25, 2022
867ce9a
feat(Hermes): Split up and update code.
ChasonTang Sep 3, 2022
5ce146b
feat(Hermes): Complete hermes FunctionInfo class.
ChasonTang Sep 4, 2022
2fc3177
feat(Hermes): Complete hermes engine upgrade.
ChasonTang Sep 7, 2022
24f6ef1
chore: Temp commit.
ChasonTang Oct 3, 2022
35ca579
chore: Temp commit.
ChasonTang Oct 4, 2022
4c8dd3d
chore: Temp commit.
ChasonTang Oct 4, 2022
ca30421
feat: Using #pragma once instead of macro.
ChasonTang Oct 4, 2022
8ef1cf1
feat: Remove clion support.
ChasonTang Oct 6, 2022
3482ede
feat(Hermes): Add hermes engine debugger support.
ChasonTang Oct 8, 2022
0c5a9ae
docs: Update README.md.
ChasonTang Oct 8, 2022
a3b2d99
chore: Update .gitignore file.
ChasonTang Oct 16, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .clang-format
Original file line number Diff line number Diff line change
@@ -1 +1 @@
BasedOnStyle: Microsoft
BasedOnStyle: Google
75 changes: 5 additions & 70 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,75 +1,10 @@
# macOS.gitignore
# General
.DS_Store
.AppleDouble
.LSOverride
/third_party/include/folly/boost/

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

# C++.gitignore
# Prerequisites
*.d

# Compiled Object files
*.slo
*.lo
*.o
*.obj

# Precompiled Headers
*.gch
*.pch

# Compiled Dynamic libraries
*.so
*.dylib
*.dll

# Fortran module files
*.mod
*.smod

# Compiled Static libraries
*.lai
*.la
*.a
*.lib

# Executables
*.exe
*.out
*.app
/.vscode/

/out/
/.vscode/
/.idea/
/clion/
/static_analyze_report/
/x86_64/
/i386/
/armv7/
/arm/
/arm64/
/napi/
/napi_ios.tar.gz
/napi_hermes_android.tar.gz
/napi_qjs_android.tar.gz
/x86/
/x64/
15 changes: 12 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@
[submodule "third_party/double-conversion"]
path = third_party/double-conversion
url = [email protected]:google/double-conversion.git
[submodule "third_party/boost-for-react-native"]
path = third_party/boost-for-react-native
url = [email protected]:react-native-community/boost-for-react-native.git
[submodule "third_party/libevent"]
path = third_party/libevent
url = [email protected]:libevent/libevent.git
[submodule "third_party/fbjni"]
path = third_party/fbjni
url = [email protected]:facebookincubator/fbjni.git
[submodule "third_party/fmt"]
path = third_party/fmt
url = [email protected]:fmtlib/fmt.git
[submodule "third_party/glog"]
path = third_party/glog
url = [email protected]:google/glog.git
2 changes: 1 addition & 1 deletion .gn
Original file line number Diff line number Diff line change
@@ -1 +1 @@
buildconfig = "//BUILDCONFIG.gn"
buildconfig = "//build/config/BUILDCONFIG.gn"
Loading