Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
26c8794b
X
Xts Acts
项目概览
OpenHarmony
/
Xts Acts
1 年多 前同步成功
通知
9
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
Xts Acts
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
26c8794b
编写于
3月 18, 2021
作者:
O
openharmony_ci
提交者:
Gitee
3月 18, 2021
浏览文件
操作
浏览文件
下载
差异文件
!52 修改 utils 对外头文件路径
Merge pull request !52 from guyuanzhang/22
上级
155e1ea3
122d1e0b
变更
12
显示空白变更内容
内联
并排
Showing
12 changed file
with
13 addition
and
13 deletion
+13
-13
graphic_lite/a/src/UiInterfaceTest.cpp
graphic_lite/a/src/UiInterfaceTest.cpp
+2
-2
graphic_lite/color_posix/src/color_test.cpp
graphic_lite/color_posix/src/color_test.cpp
+1
-1
graphic_lite/geometry2d_posix/src/geometry2d_test.cpp
graphic_lite/geometry2d_posix/src/geometry2d_test.cpp
+1
-1
graphic_lite/graphic_math_posix/src/graphic_math_test.cpp
graphic_lite/graphic_math_posix/src/graphic_math_test.cpp
+1
-1
graphic_lite/heap_base_posix/src/heap_base_test.cpp
graphic_lite/heap_base_posix/src/heap_base_test.cpp
+1
-1
graphic_lite/list_posix/src/list_test.cpp
graphic_lite/list_posix/src/list_test.cpp
+1
-1
graphic_lite/mem_api_posix/src/mem_api_test.cpp
graphic_lite/mem_api_posix/src/mem_api_test.cpp
+1
-1
graphic_lite/rect_posix/src/rect_test.cpp
graphic_lite/rect_posix/src/rect_test.cpp
+1
-1
graphic_lite/style_posix/src/style_test.cpp
graphic_lite/style_posix/src/style_test.cpp
+1
-1
graphic_lite/transform_posix/src/transform_test.cpp
graphic_lite/transform_posix/src/transform_test.cpp
+1
-1
graphic_lite/uidfx_posix/src/dump_dom_tree_test.cpp
graphic_lite/uidfx_posix/src/dump_dom_tree_test.cpp
+1
-1
graphic_lite/version_posix/src/version_test.cpp
graphic_lite/version_posix/src/version_test.cpp
+1
-1
未找到文件。
graphic_lite/a/src/UiInterfaceTest.cpp
浏览文件 @
26c8794b
...
...
@@ -16,6 +16,7 @@
#include "UiInterfaceTest.h"
#include "common/graphic_startup.h"
#include "components/root_view.h"
#include "components/text_adapter.h"
#include "components/ui_abstract_clock.h"
#include "components/ui_analog_clock.h"
...
...
@@ -34,10 +35,9 @@
#include "events/aod_callback.h"
#include "events/press_event.h"
#include "events/virtual_device_event.h"
#include "graphic_math.h"
#include "g
fx_utils/g
raphic_math.h"
#include "themes/theme_manager.h"
#include "window/window.h"
#include "components/root_view.h"
#include <climits>
#include <gtest/gtest.h>
...
...
graphic_lite/color_posix/src/color_test.cpp
浏览文件 @
26c8794b
...
...
@@ -13,7 +13,7 @@
* limitations under the License.
*/
#include "color.h"
#include "
gfx_utils/
color.h"
#include <climits>
#include <gtest/gtest.h>
...
...
graphic_lite/geometry2d_posix/src/geometry2d_test.cpp
浏览文件 @
26c8794b
...
...
@@ -13,9 +13,9 @@
* limitations under the License.
*/
#include "gfx_utils/geometry2d.h"
#include <climits>
#include <gtest/gtest.h>
#include "geometry2d.h"
using
namespace
std
;
using
namespace
testing
::
ext
;
...
...
graphic_lite/graphic_math_posix/src/graphic_math_test.cpp
浏览文件 @
26c8794b
...
...
@@ -13,7 +13,7 @@
* limitations under the License.
*/
#include "graphic_math.h"
#include "g
fx_utils/g
raphic_math.h"
#include <climits>
#include <gtest/gtest.h>
...
...
graphic_lite/heap_base_posix/src/heap_base_test.cpp
浏览文件 @
26c8794b
...
...
@@ -13,7 +13,7 @@
* limitations under the License.
*/
#include "heap_base.h"
#include "
gfx_utils/
heap_base.h"
#include <climits>
#include <gtest/gtest.h>
...
...
graphic_lite/list_posix/src/list_test.cpp
浏览文件 @
26c8794b
...
...
@@ -13,9 +13,9 @@
* limitations under the License.
*/
#include "gfx_utils/list.h"
#include <climits>
#include <gtest/gtest.h>
#include "list.h"
using
namespace
std
;
using
namespace
testing
::
ext
;
...
...
graphic_lite/mem_api_posix/src/mem_api_test.cpp
浏览文件 @
26c8794b
...
...
@@ -13,7 +13,7 @@
* limitations under the License.
*/
#include "mem_api.h"
#include "
gfx_utils/
mem_api.h"
#include <climits>
#include <gtest/gtest.h>
...
...
graphic_lite/rect_posix/src/rect_test.cpp
浏览文件 @
26c8794b
...
...
@@ -13,7 +13,7 @@
* limitations under the License.
*/
#include "rect.h"
#include "
gfx_utils/
rect.h"
#include <climits>
#include <gtest/gtest.h>
...
...
graphic_lite/style_posix/src/style_test.cpp
浏览文件 @
26c8794b
...
...
@@ -13,7 +13,7 @@
* limitations under the License.
*/
#include "style.h"
#include "
gfx_utils/
style.h"
#include <climits>
#include <gtest/gtest.h>
...
...
graphic_lite/transform_posix/src/transform_test.cpp
浏览文件 @
26c8794b
...
...
@@ -13,9 +13,9 @@
* limitations under the License.
*/
#include "gfx_utils/transform.h"
#include <climits>
#include <gtest/gtest.h>
#include "transform.h"
using
namespace
std
;
using
namespace
testing
::
ext
;
...
...
graphic_lite/uidfx_posix/src/dump_dom_tree_test.cpp
浏览文件 @
26c8794b
...
...
@@ -38,7 +38,7 @@
#include "components/ui_view_group.h"
#include "draw/draw_image.h"
#include "draw/draw_utils.h"
#include "file.h"
#include "
gfx_utils/
file.h"
using
namespace
std
;
using
namespace
testing
::
ext
;
...
...
graphic_lite/version_posix/src/version_test.cpp
浏览文件 @
26c8794b
...
...
@@ -13,7 +13,7 @@
* limitations under the License.
*/
#include "version.h"
#include "
gfx_utils/
version.h"
#include <climits>
#include <gtest/gtest.h>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录