From a85147bb788f04bc11abb99937b9a410053b8bd4 Mon Sep 17 00:00:00 2001 From: Swift Kim Date: Tue, 15 Dec 2020 13:03:08 +0900 Subject: [PATCH] Remove tizen_tools dependency and update BUILD.gn --- DEPS | 2 -- shell/platform/tizen/BUILD.gn | 36 +++++++++++++++++------------------ 2 files changed, 18 insertions(+), 20 deletions(-) diff --git a/DEPS b/DEPS index 4c090e41785a4..297af528b902e 100644 --- a/DEPS +++ b/DEPS @@ -107,8 +107,6 @@ allowed_hosts = [ deps = { 'src': 'https://github.com/flutter/buildroot.git' + '@' + 'a6c0959d1ac8cdfe6f9ff87892bc4905a73699fe', - 'src/third_party/tizen_tools': 'git@github.com:flutter-tizen/tizen_tools.git', - # Fuchsia compatibility # # The dependencies in this section should match the layout in the Fuchsia gn diff --git a/shell/platform/tizen/BUILD.gn b/shell/platform/tizen/BUILD.gn index 62e4603bfc525..897369f3c8ccc 100644 --- a/shell/platform/tizen/BUILD.gn +++ b/shell/platform/tizen/BUILD.gn @@ -62,26 +62,26 @@ source_set("flutter_tizen") { ] include_dirs = [ - "//third_party/tizen_tools/sysroot/$target_cpu/usr/include", - "//third_party/tizen_tools/sysroot/$target_cpu/usr/include/appfw", - "//third_party/tizen_tools/sysroot/$target_cpu/usr/include/base", - "//third_party/tizen_tools/sysroot/$target_cpu/usr/include/dlog", - "//third_party/tizen_tools/sysroot/$target_cpu/usr/include/ecore-1", - "//third_party/tizen_tools/sysroot/$target_cpu/usr/include/ecore-evas-1", - "//third_party/tizen_tools/sysroot/$target_cpu/usr/include/ecore-imf-1", - "//third_party/tizen_tools/sysroot/$target_cpu/usr/include/ecore-imf-evas-1", - "//third_party/tizen_tools/sysroot/$target_cpu/usr/include/ecore-input-1", - "//third_party/tizen_tools/sysroot/$target_cpu/usr/include/ecore-wl2-1", - "//third_party/tizen_tools/sysroot/$target_cpu/usr/include/efl-1", - "//third_party/tizen_tools/sysroot/$target_cpu/usr/include/eina-1", - "//third_party/tizen_tools/sysroot/$target_cpu/usr/include/eina-1/eina", - "//third_party/tizen_tools/sysroot/$target_cpu/usr/include/emile-1", - "//third_party/tizen_tools/sysroot/$target_cpu/usr/include/eo-1", - "//third_party/tizen_tools/sysroot/$target_cpu/usr/include/evas-1", - "//third_party/tizen_tools/sysroot/$target_cpu/usr/include/system", + "$custom_sysroot/usr/include", + "$custom_sysroot/usr/include/appfw", + "$custom_sysroot/usr/include/base", + "$custom_sysroot/usr/include/dlog", + "$custom_sysroot/usr/include/ecore-1", + "$custom_sysroot/usr/include/ecore-evas-1", + "$custom_sysroot/usr/include/ecore-imf-1", + "$custom_sysroot/usr/include/ecore-imf-evas-1", + "$custom_sysroot/usr/include/ecore-input-1", + "$custom_sysroot/usr/include/ecore-wl2-1", + "$custom_sysroot/usr/include/efl-1", + "$custom_sysroot/usr/include/eina-1", + "$custom_sysroot/usr/include/eina-1/eina", + "$custom_sysroot/usr/include/emile-1", + "$custom_sysroot/usr/include/eo-1", + "$custom_sysroot/usr/include/evas-1", + "$custom_sysroot/usr/include/system", ] - lib_dirs = [ "//third_party/tizen_tools/sysroot/$target_cpu/usr/lib" ] + lib_dirs = [ "$custom_sysroot/usr/lib" ] cflags_cc = [ "-Wno-newline-eof",