From f00bea837e6944c7b0552feba0e5f921b3c79264 Mon Sep 17 00:00:00 2001 From: zhangguyuan Date: Tue, 16 Mar 2021 22:20:10 +0800 Subject: [PATCH] fix utils include path Change-Id: I583b28de8b3c0173193e3cedd3a94c6f84af437d --- graphic_lite/a/src/UiInterfaceTest.cpp | 2 +- graphic_lite/color_posix/src/color_test.cpp | 2 +- graphic_lite/geometry2d_posix/src/geometry2d_test.cpp | 2 +- graphic_lite/graphic_math_posix/src/graphic_math_test.cpp | 2 +- graphic_lite/heap_base_posix/src/heap_base_test.cpp | 2 +- graphic_lite/list_posix/src/list_test.cpp | 2 +- graphic_lite/mem_api_posix/src/mem_api_test.cpp | 2 +- graphic_lite/rect_posix/src/rect_test.cpp | 2 +- graphic_lite/style_posix/src/style_test.cpp | 2 +- graphic_lite/transform_posix/src/transform_test.cpp | 2 +- graphic_lite/uidfx_posix/src/dump_dom_tree_test.cpp | 2 +- graphic_lite/version_posix/src/version_test.cpp | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/graphic_lite/a/src/UiInterfaceTest.cpp b/graphic_lite/a/src/UiInterfaceTest.cpp index 1f5e264bc..defeb807a 100755 --- a/graphic_lite/a/src/UiInterfaceTest.cpp +++ b/graphic_lite/a/src/UiInterfaceTest.cpp @@ -34,7 +34,7 @@ #include "events/aod_callback.h" #include "events/press_event.h" #include "events/virtual_device_event.h" -#include "graphic_math.h" +#include "gfx_utils/graphic_math.h" #include "themes/theme_manager.h" #include "window/window.h" #include "components/root_view.h" diff --git a/graphic_lite/color_posix/src/color_test.cpp b/graphic_lite/color_posix/src/color_test.cpp index 5d93b39f7..c3739c19c 100755 --- a/graphic_lite/color_posix/src/color_test.cpp +++ b/graphic_lite/color_posix/src/color_test.cpp @@ -13,7 +13,7 @@ * limitations under the License. */ -#include "color.h" +#include "gfx_utils/color.h" #include #include diff --git a/graphic_lite/geometry2d_posix/src/geometry2d_test.cpp b/graphic_lite/geometry2d_posix/src/geometry2d_test.cpp index 1a756719d..91d0d7808 100755 --- a/graphic_lite/geometry2d_posix/src/geometry2d_test.cpp +++ b/graphic_lite/geometry2d_posix/src/geometry2d_test.cpp @@ -15,7 +15,7 @@ #include #include -#include "geometry2d.h" +#include "gfx_utils/geometry2d.h" using namespace std; using namespace testing::ext; diff --git a/graphic_lite/graphic_math_posix/src/graphic_math_test.cpp b/graphic_lite/graphic_math_posix/src/graphic_math_test.cpp index a6d19e85e..157b03895 100755 --- a/graphic_lite/graphic_math_posix/src/graphic_math_test.cpp +++ b/graphic_lite/graphic_math_posix/src/graphic_math_test.cpp @@ -13,7 +13,7 @@ * limitations under the License. */ -#include "graphic_math.h" +#include "gfx_utils/graphic_math.h" #include #include diff --git a/graphic_lite/heap_base_posix/src/heap_base_test.cpp b/graphic_lite/heap_base_posix/src/heap_base_test.cpp index 66cc55bef..4d654220c 100755 --- a/graphic_lite/heap_base_posix/src/heap_base_test.cpp +++ b/graphic_lite/heap_base_posix/src/heap_base_test.cpp @@ -13,7 +13,7 @@ * limitations under the License. */ -#include "heap_base.h" +#include "gfx_utils/heap_base.h" #include #include diff --git a/graphic_lite/list_posix/src/list_test.cpp b/graphic_lite/list_posix/src/list_test.cpp index a21363db6..37dba39fb 100755 --- a/graphic_lite/list_posix/src/list_test.cpp +++ b/graphic_lite/list_posix/src/list_test.cpp @@ -15,7 +15,7 @@ #include #include -#include "list.h" +#include "gfx_utils/list.h" using namespace std; using namespace testing::ext; diff --git a/graphic_lite/mem_api_posix/src/mem_api_test.cpp b/graphic_lite/mem_api_posix/src/mem_api_test.cpp index 5fe666f2f..e885c07e1 100755 --- a/graphic_lite/mem_api_posix/src/mem_api_test.cpp +++ b/graphic_lite/mem_api_posix/src/mem_api_test.cpp @@ -13,7 +13,7 @@ * limitations under the License. */ -#include "mem_api.h" +#include "gfx_utils/mem_api.h" #include #include diff --git a/graphic_lite/rect_posix/src/rect_test.cpp b/graphic_lite/rect_posix/src/rect_test.cpp index e40f31f0e..98a8753e9 100755 --- a/graphic_lite/rect_posix/src/rect_test.cpp +++ b/graphic_lite/rect_posix/src/rect_test.cpp @@ -13,7 +13,7 @@ * limitations under the License. */ -#include "rect.h" +#include "gfx_utils/rect.h" #include #include diff --git a/graphic_lite/style_posix/src/style_test.cpp b/graphic_lite/style_posix/src/style_test.cpp index 789802818..0de1994b5 100755 --- a/graphic_lite/style_posix/src/style_test.cpp +++ b/graphic_lite/style_posix/src/style_test.cpp @@ -13,7 +13,7 @@ * limitations under the License. */ -#include "style.h" +#include "gfx_utils/style.h" #include #include diff --git a/graphic_lite/transform_posix/src/transform_test.cpp b/graphic_lite/transform_posix/src/transform_test.cpp index 51f21c07a..9067509f4 100755 --- a/graphic_lite/transform_posix/src/transform_test.cpp +++ b/graphic_lite/transform_posix/src/transform_test.cpp @@ -15,7 +15,7 @@ #include #include -#include "transform.h" +#include "gfx_utils/transform.h" using namespace std; using namespace testing::ext; diff --git a/graphic_lite/uidfx_posix/src/dump_dom_tree_test.cpp b/graphic_lite/uidfx_posix/src/dump_dom_tree_test.cpp index b32b9039c..dc48acad6 100755 --- a/graphic_lite/uidfx_posix/src/dump_dom_tree_test.cpp +++ b/graphic_lite/uidfx_posix/src/dump_dom_tree_test.cpp @@ -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; diff --git a/graphic_lite/version_posix/src/version_test.cpp b/graphic_lite/version_posix/src/version_test.cpp index d01da8adf..97a5f4ca6 100755 --- a/graphic_lite/version_posix/src/version_test.cpp +++ b/graphic_lite/version_posix/src/version_test.cpp @@ -13,7 +13,7 @@ * limitations under the License. */ -#include "version.h" +#include "gfx_utils/version.h" #include #include -- GitLab