Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Graphic Ui
提交
b1ae2cfe
G
Graphic Ui
项目概览
OpenHarmony
/
Graphic Ui
大约 1 年 前同步成功
通知
13
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
G
Graphic Ui
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
b1ae2cfe
编写于
7月 16, 2021
作者:
N
niulihua
浏览文件
操作
浏览文件
下载
差异文件
Merge gitee.com:niulihua/graphic_ui into HEAD
Change-Id: If12721da852edf397aa7af1c59c5cad45a42915e
上级
765a0c32
4e158011
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
26 addition
and
5 deletion
+26
-5
BUILD.gn
BUILD.gn
+12
-2
test/framework/BUILD.gn
test/framework/BUILD.gn
+6
-1
test/framework/src/ui_test_group.cpp
test/framework/src/ui_test_group.cpp
+2
-0
test/unittest/BUILD.gn
test/unittest/BUILD.gn
+6
-2
未找到文件。
BUILD.gn
浏览文件 @
b1ae2cfe
...
...
@@ -105,7 +105,6 @@ shared_library("ui") {
"frameworks/components/ui_texture_mapper.cpp",
"frameworks/components/ui_time_picker.cpp",
"frameworks/components/ui_toggle_button.cpp",
"frameworks/components/ui_video.cpp",
"frameworks/components/ui_view.cpp",
"frameworks/components/ui_view_group.cpp",
"frameworks/core/render_manager.cpp",
...
...
@@ -162,13 +161,13 @@ shared_library("ui") {
"frameworks/engines/gfx/gfx_engine_manager.cpp",
"frameworks/engines/gfx/hi3516/hi3516_engine.cpp",
]
include_dirs = [ "//foundation/graphic/ui/frameworks" ]
deps = [
"//build/lite/config/component/cJSON:cjson_shared",
"//foundation/graphic/surface:lite_surface",
"//foundation/graphic/utils:lite_graphic_hals",
"//foundation/graphic/wms:lite_wms",
"//foundation/multimedia/media_lite/frameworks/player_lite:player_lite",
"//third_party/bounds_checking_function:libsec_shared",
"//third_party/freetype:freetype",
"//third_party/giflib:libgif",
...
...
@@ -178,6 +177,17 @@ shared_library("ui") {
"//third_party/qrcodegen:qrcodegen",
]
if (enable_video_component) {
defines += [ "ENABLE_VIDEO_COMPONENT=1" ]
source += [
"frameworks/components/ui_video.cpp",
]
deps += [
"//foundation/multimedia/media_lite/frameworks/player_lite:player_lite",
]
}
public_deps = [ "//foundation/graphic/utils:lite_graphic_utils" ]
public_configs = [ ":graphic_define_config" ]
cflags = [
...
...
test/framework/BUILD.gn
浏览文件 @
b1ae2cfe
...
...
@@ -61,7 +61,6 @@ test_sources = [
"../uitest/test_ui_scroll_view/ui_test_ui_scroll_view.cpp",
"../uitest/test_ui_swipe_view/ui_test_ui_swipe_view.cpp",
"../uitest/test_vector_font/ui_test_vector_font.cpp",
"../uitest/test_video/ui_test_video.cpp",
"../uitest/test_view_bitmap/ui_test_view_bitmap.cpp",
"../uitest/test_view_bounds/ui_test_view_bounds.cpp",
"../uitest/test_view_group/ui_test_view_group.cpp",
...
...
@@ -75,6 +74,12 @@ test_sources = [
"src/ui_test_group.cpp",
]
if (enable_video_component) {
test_sources += [
"../uitest/test_video/ui_test_video.cpp",
]
}
auto_test_sources = [
"../uitest/test_layout/ui_auto_test_basic_layout.cpp",
"../uitest/test_render/ui_auto_test_render.cpp",
...
...
test/framework/src/ui_test_group.cpp
浏览文件 @
b1ae2cfe
...
...
@@ -142,8 +142,10 @@ void UITestGroup::SetUpTestCase()
testCaseList_
.
PushBack
(
TestCaseInfo
{
"UIViewGroup"
,
new
UITestViewGroup
()});
testCaseList_
.
PushBack
(
TestCaseInfo
{
"View Bitmap"
,
new
UITestViewBitmap
()});
#ifndef VERSION_LITE
#if ENABLE_VIDEO_COMPONENT
testCaseList_
.
PushBack
(
TestCaseInfo
{
"Video"
,
new
UITestVideo
()});
#endif
#endif
#if ENABLE_FOCUS_MANAGER
testCaseList_
.
PushBack
(
TestCaseInfo
{
"FocusManager"
,
new
UITestFocusManager
()});
#endif
...
...
test/unittest/BUILD.gn
浏览文件 @
b1ae2cfe
...
...
@@ -8,7 +8,7 @@
# 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.
import("//build/lite/config/subsystem/graphic/config.gni")
import("//build/lite/config/test.gni")
group("lite_graphic_ui_test") {
...
...
@@ -76,7 +76,6 @@ if (ohos_build_type == "debug") {
"components/ui_swipe_view_unit_test.cpp",
"components/ui_time_picker_unit_test.cpp",
"components/ui_toggle_button_unit_test.cpp",
"components/ui_video_unit_test.cpp",
"components/ui_view_group_unit_test.cpp",
"components/ui_view_unit_test.cpp",
"dfx/event_injector_unit_test.cpp",
...
...
@@ -98,6 +97,11 @@ if (ohos_build_type == "debug") {
"rotate/ui_rotate_input_unit_test.cpp",
"themes/theme_manager_unit_test.cpp",
]
if (enable_video_component) {
sources += [
"components/ui_video_unit_test.cpp",
]
}
deps = [
"//foundation/graphic/ui:ui",
"//foundation/multimedia/media_lite/frameworks/player_lite:player_lite",
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录