frida 16.7.15 → 16.7.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/src/frida.js +1 -1
- package/meson.build +1 -13
- package/package.json +1 -1
- package/src/assets/meson.build +13 -0
- package/src/frida_bindgen/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/frida_bindgen/__pycache__/__main__.cpython-312.pyc +0 -0
- package/src/frida_bindgen/__pycache__/cli.cpython-312.pyc +0 -0
- package/src/frida_bindgen/__pycache__/codegen.cpython-312.pyc +0 -0
- package/src/frida_bindgen/__pycache__/customization.cpython-312.pyc +0 -0
- package/src/frida_bindgen/__pycache__/loader.cpython-312.pyc +0 -0
- package/src/frida_bindgen/__pycache__/model.cpython-312.pyc +0 -0
- package/src/frida_bindgen/codegen.py +1 -1
- package/src/meson.build +3 -1
- package/subprojects/frida-core.wrap +1 -1
- /package/{scripts → src/assets}/adjust-version.py +0 -0
package/build/src/frida.js
CHANGED
package/meson.build
CHANGED
|
@@ -84,19 +84,7 @@ frida_core_dep = dependency('frida-core-1.0', default_options: [
|
|
|
84
84
|
|
|
85
85
|
pkg_install_dir = get_option('libdir') / 'node_modules' / 'frida'
|
|
86
86
|
|
|
87
|
-
package_json =
|
|
88
|
-
input: 'package.json',
|
|
89
|
-
output: 'package.json',
|
|
90
|
-
command: [
|
|
91
|
-
python,
|
|
92
|
-
files('scripts' / 'adjust-version.py'),
|
|
93
|
-
version,
|
|
94
|
-
'@INPUT@',
|
|
95
|
-
'@OUTPUT@',
|
|
96
|
-
],
|
|
97
|
-
install: true,
|
|
98
|
-
install_dir: pkg_install_dir,
|
|
99
|
-
)
|
|
87
|
+
package_json = files('package.json')
|
|
100
88
|
tsconfig_json = files('tsconfig.json')
|
|
101
89
|
|
|
102
90
|
subdir('src')
|
package/package.json
CHANGED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
adjusted_package_json = custom_target('package.json',
|
|
2
|
+
input: package_json,
|
|
3
|
+
output: 'package.json',
|
|
4
|
+
command: [
|
|
5
|
+
python,
|
|
6
|
+
files('adjust-version.py'),
|
|
7
|
+
version,
|
|
8
|
+
'@INPUT@',
|
|
9
|
+
'@OUTPUT@',
|
|
10
|
+
],
|
|
11
|
+
install: true,
|
|
12
|
+
install_dir: pkg_install_dir,
|
|
13
|
+
)
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/src/meson.build
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
subdir('assets')
|
|
2
|
+
|
|
1
3
|
if frida_core_dep.type_name() == 'internal'
|
|
2
4
|
frida_core_subprj = subproject('frida-core')
|
|
3
5
|
frida_gir = frida_core_subprj.get_variable('core_public_gir')
|
|
@@ -78,7 +80,7 @@ custom_target('js',
|
|
|
78
80
|
'@OUTDIR@',
|
|
79
81
|
'@PRIVATE_DIR@',
|
|
80
82
|
npm,
|
|
81
|
-
|
|
83
|
+
adjusted_package_json,
|
|
82
84
|
tsconfig_json,
|
|
83
85
|
'@INPUT@',
|
|
84
86
|
],
|
|
File without changes
|