| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 8b87709 commit 9e30724
109 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -38,6 +38,7 @@ on: | |||
| 38 | 38 | - root-certificates | |
| 39 | 39 | - simdjson | |
| 40 | 40 | - simdutf | |
| 41 | + - sqlite | ||
| 41 | 42 | - undici | |
| 42 | 43 | - uvwasi | |
| 43 | 44 | - zlib | |
@@ -272,6 +273,14 @@ jobs: | |||
| 272 | 273 | cat temp-output | |
| 273 | 274 | tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true | |
| 274 | 275 | rm temp-output | |
| 276 | + - id: sqlite | ||
| 277 | + subsystem: deps | ||
| 278 | + label: dependencies | ||
| 279 | + run: | | ||
| 280 | + ./tools/dep_updaters/update-sqlite.sh > temp-output | ||
| 281 | + cat temp-output | ||
| 282 | + tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true | ||
| 283 | + rm temp-output | ||
| 275 | 284 | - id: undici | |
| 276 | 285 | subsystem: deps | |
| 277 | 286 | label: dependencies | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,14 @@ | |||
| 1 | + ############################################################################## | ||
| 2 | + # # | ||
| 3 | + # DO NOT EDIT THIS FILE! # | ||
| 4 | + # # | ||
| 5 | + ############################################################################## | ||
| 6 | + | ||
| 7 | + # This file is used by GN for building, which is NOT the build system used for | ||
| 8 | + # building official binaries. | ||
| 9 | + # Please modify the gyp files if you are making changes to build system. | ||
| 10 | + | ||
| 11 | + import("unofficial.gni") | ||
| 12 | + | ||
| 13 | + sqlite_gn_build("sqlite") { | ||
| 14 | + } | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,24 @@ | |||
| 1 | + { | ||
| 2 | + 'variables': { | ||
| 3 | + 'sqlite_sources': [ | ||
| 4 | + 'sqlite3.c', | ||
| 5 | + ], | ||
| 6 | + }, | ||
| 7 | + 'targets': [ | ||
| 8 | + { | ||
| 9 | + 'target_name': 'sqlite', | ||
| 10 | + 'type': 'static_library', | ||
| 11 | + 'cflags': ['-fvisibility=hidden'], | ||
| 12 | + 'xcode_settings': { | ||
| 13 | + 'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES', # -fvisibility=hidden | ||
| 14 | + }, | ||
| 15 | + 'include_dirs': ['.'], | ||
| 16 | + 'sources': [ | ||
| 17 | + '<@(sqlite_sources)', | ||
| 18 | + ], | ||
| 19 | + 'direct_dependent_settings': { | ||
| 20 | + 'include_dirs': ['.'], | ||
| 21 | + }, | ||
| 22 | + }, | ||
| 23 | + ], | ||
| 24 | + } | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments