-
Notifications
You must be signed in to change notification settings - Fork 954
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
654 changed files
with
58,565 additions
and
150 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"app": { | ||
"bundleName": "com.tencent.hippydemo", | ||
"vendor": "example", | ||
"versionCode": 1000000, | ||
"versionName": "1.0.0", | ||
"icon": "$media:app_icon", | ||
"label": "$string:app_name" | ||
} | ||
} |
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,8 @@ | ||
{ | ||
"string": [ | ||
{ | ||
"name": "app_name", | ||
"value": "HippyDemo" | ||
} | ||
] | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,57 @@ | ||
{ | ||
"app": { | ||
"products": [ | ||
{ | ||
"name": "default", | ||
"signingConfig": "default", | ||
"compatibleSdkVersion": "5.0.0(12)", | ||
"runtimeOS": "HarmonyOS" | ||
} | ||
], | ||
"buildModeSet": [ | ||
{ | ||
"name": "debug", | ||
"buildOption": { | ||
"externalNativeOptions": { | ||
"abiFilters": [ | ||
"arm64-v8a" | ||
] | ||
} | ||
} | ||
}, | ||
{ | ||
"name": "release" | ||
} | ||
] | ||
}, | ||
"modules": [ | ||
{ | ||
"name": "entry_har", | ||
"srcPath": "./framework/examples/ohos-har-demo", | ||
"targets": [ | ||
{ | ||
"name": "default", | ||
"applyToProducts": [ | ||
"default" | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "entry", | ||
"srcPath": "./framework/examples/ohos-demo", | ||
"targets": [ | ||
{ | ||
"name": "default", | ||
"applyToProducts": [ | ||
"default" | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "hippy", | ||
"srcPath": "./framework/ohos" | ||
}, | ||
] | ||
} |
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
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 |
---|---|---|
|
@@ -21,6 +21,7 @@ | |
#pragma once | ||
|
||
#include <endian.h> | ||
#include <netinet/in.h> | ||
#include <functional> | ||
#include <vector> | ||
|
||
|
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,73 @@ | ||
# | ||
# Tencent is pleased to support the open source community by making | ||
# Hippy available. | ||
# | ||
# Copyright (C) 2022 THL A29 Limited, a Tencent company. | ||
# All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
cmake_minimum_required(VERSION 3.14) | ||
|
||
project("devtools_integration") | ||
|
||
get_filename_component(PROJECT_ROOT_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../../../" REALPATH) | ||
|
||
include("${PROJECT_ROOT_DIR}/buildconfig/cmake/InfraPackagesModule.cmake") | ||
include("${PROJECT_ROOT_DIR}/buildconfig/cmake/compiler_toolchain.cmake") | ||
|
||
set(CMAKE_CXX_STANDARD 17) | ||
|
||
# region library | ||
add_library(${PROJECT_NAME} STATIC) | ||
target_include_directories(${PROJECT_NAME} PUBLIC include) | ||
target_compile_options(${PROJECT_NAME} PRIVATE ${COMPILE_OPTIONS}) | ||
# endregion | ||
|
||
# region jni | ||
GlobalPackages_Add_oh_napi() | ||
target_link_libraries(${PROJECT_NAME} PUBLIC oh_napi) | ||
# endregion | ||
|
||
# region footstone | ||
GlobalPackages_Add_footstone() | ||
target_link_libraries(${PROJECT_NAME} PRIVATE footstone) | ||
# endregion | ||
|
||
# region dom | ||
GlobalPackages_Add_dom() | ||
target_link_libraries(${PROJECT_NAME} PRIVATE dom) | ||
# endregion | ||
|
||
# region vfs | ||
GlobalPackages_Add_vfs() | ||
target_link_libraries(${PROJECT_NAME} PRIVATE vfs) | ||
# endregion | ||
|
||
# region devtools | ||
GlobalPackages_Add_devtools_backend() | ||
target_link_libraries(${PROJECT_NAME} PRIVATE devtools_backend) | ||
# endregion | ||
|
||
# region devtools_integration | ||
add_subdirectory(${PROJECT_ROOT_DIR}/devtools/devtools-integration/native ${CMAKE_CURRENT_BINARY_DIR}/devtools-integration/native) | ||
target_link_libraries(${PROJECT_NAME} PUBLIC devtools_integration_native) | ||
# endregion | ||
|
||
# region source set | ||
set(SOURCE_SET | ||
src/devtools_napi.cc) | ||
|
||
target_sources(${PROJECT_NAME} PUBLIC ${SOURCE_SET}) | ||
# endregion |
32 changes: 32 additions & 0 deletions
32
devtools/devtools-integration/ohos/include/devtools_napi.h
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,32 @@ | ||
/* | ||
* Tencent is pleased to support the open source community by making | ||
* Hippy available. | ||
* | ||
* Copyright (C) 2022 THL A29 Limited, a Tencent company. | ||
* All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include "footstone/string_view.h" | ||
#include "footstone/task_runner.h" | ||
#include <js_native_api.h> | ||
#include <js_native_api_types.h> | ||
|
||
namespace hippy::devtools { | ||
|
||
|
||
} | ||
|
Oops, something went wrong.