Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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 scripts/core-boundaries/rules/source/required-rules.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6040,7 +6040,7 @@ export const requiredContentRules = [
message: 'missing remote chat history conversion regression',
},
{
regex: /\bcore_service_agent_runtime_owner_skips_in_progress_remote_assistant_history\b/,
regex: /\bcore_service_agent_runtime_owner_preserves_in_progress_remote_assistant_history\b/,
message: 'missing in-progress remote assistant history regression',
},
{
Expand Down
2 changes: 1 addition & 1 deletion scripts/core-boundaries/self-test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3045,7 +3045,7 @@ export function runManifestParserSelfTest({
'core_service_agent_runtime_owner_normalizes_remote_session_model_ids',
'core_service_agent_runtime_owner_normalizes_remote_model_selection_aliases',
'core_service_agent_runtime_owner_preserves_remote_chat_history_shape',
'core_service_agent_runtime_owner_skips_in_progress_remote_assistant_history',
'core_service_agent_runtime_owner_preserves_in_progress_remote_assistant_history',
'core_service_agent_runtime_owner_maps_image_context_to_lifecycle_attachment',
'core_service_agent_runtime_owner_keeps_scheduler_lifecycle_port_contracts',
],
Expand Down
5 changes: 4 additions & 1 deletion src/apps/mobile/harmonyos/entry/build-profile.json5
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"apiType": "stageMode",
"buildOption": {
"externalNativeOptions": {
"path": "./src/main/cpp/CMakeLists.txt"
},
"resOptions": {
"copyCodeResource": {
"enable": false
Expand Down Expand Up @@ -30,4 +33,4 @@
"name": "ohosTest",
}
]
}
}
4 changes: 3 additions & 1 deletion src/apps/mobile/harmonyos/entry/oh-package.json5
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,7 @@
"main": "",
"author": "",
"license": "",
"dependencies": {}
"dependencies": {},
"devDependencies": {},
"dynamicDependencies": {}
}
17 changes: 17 additions & 0 deletions src/apps/mobile/harmonyos/entry/src/main/cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
cmake_minimum_required(VERSION 3.5.0)
project(bitfun_crypto)

add_library(bitfun_crypto SHARED
napi_argon2.cpp
argon2/argon2.c
argon2/core.c
argon2/encoding.c
argon2/ref.c
argon2/run.c
argon2/thread.c
argon2/blake2/blake2b.c
)

target_include_directories(bitfun_crypto PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/argon2)
target_compile_definitions(bitfun_crypto PRIVATE A2_VISCTL)
target_link_libraries(bitfun_crypto PUBLIC libace_napi.z.so)
Loading
Loading