diff --git a/DEPS b/DEPS index 5dfcb137998dd..c6a4502a5eee6 100644 --- a/DEPS +++ b/DEPS @@ -634,7 +634,7 @@ deps = { 'src/flutter/third_party/ocmock': Var('flutter_git') + '/third_party/ocmock' + '@' + Var('ocmock_rev'), - 'src/third_party/updater': + 'src/flutter/third_party/updater': Var('updater_git') + '@' + Var('updater_rev'), 'src/flutter/third_party/libjpeg-turbo/src': diff --git a/shell/common/BUILD.gn b/shell/common/BUILD.gn index d0494a9c51258..a2f33967f78d2 100644 --- a/shell/common/BUILD.gn +++ b/shell/common/BUILD.gn @@ -166,11 +166,9 @@ source_set("common") { # Needed to compile flutter_tester for macOS. if (host_os == "mac" && target_os == "mac") { if (target_cpu == "arm64") { - libs = [ "//third_party/updater/target/aarch64-apple-darwin/release/libupdater.a" ] + libs = [ "//flutter/third_party/updater/target/aarch64-apple-darwin/release/libupdater.a" ] } else if (target_cpu == "x64") { - libs = [ - "//third_party/updater/target/x86_64-apple-darwin/release/libupdater.a", - ] + libs = [ "//flutter/third_party/updater/target/x86_64-apple-darwin/release/libupdater.a" ] } } @@ -179,14 +177,14 @@ source_set("common") { if (target_cpu == "x64") { libs = [ "userenv.lib", - "//third_party/updater/target/x86_64-pc-windows-msvc/release/updater.lib", + "//flutter/third_party/updater/target/x86_64-pc-windows-msvc/release/updater.lib", ] } } if (host_os == "linux" && target_os == "linux") { if (target_cpu == "x64") { - libs = [ "//third_party/updater/target/x86_64-unknown-linux-gnu/release/libupdater.a" ] + libs = [ "//flutter/third_party/updater/target/x86_64-unknown-linux-gnu/release/libupdater.a" ] } } } diff --git a/shell/platform/android/BUILD.gn b/shell/platform/android/BUILD.gn index bde83714ec43b..10b5c4bb232f1 100644 --- a/shell/platform/android/BUILD.gn +++ b/shell/platform/android/BUILD.gn @@ -183,19 +183,13 @@ source_set("flutter_shell_native_src") { "GLESv2", ] if (target_cpu == "arm") { - libs += [ "//third_party/updater/target/armv7-linux-androideabi/release/libupdater.a" ] + libs += [ "//flutter/third_party/updater/target/armv7-linux-androideabi/release/libupdater.a" ] } else if (target_cpu == "arm64") { - libs += [ - "//third_party/updater/target/aarch64-linux-android/release/libupdater.a", - ] + libs += [ "//flutter/third_party/updater/target/aarch64-linux-android/release/libupdater.a" ] } else if (target_cpu == "x64") { - libs += [ - "//third_party/updater/target/x86_64-linux-android/release/libupdater.a", - ] + libs += [ "//flutter/third_party/updater/target/x86_64-linux-android/release/libupdater.a" ] } else if (target_cpu == "x86") { - libs += [ - "//third_party/updater/target/i686-linux-android/release/libupdater.a", - ] + libs += [ "//flutter/third_party/updater/target/i686-linux-android/release/libupdater.a" ] } else { assert(false, "Unsupported target_cpu") } diff --git a/shell/platform/darwin/ios/BUILD.gn b/shell/platform/darwin/ios/BUILD.gn index 30d8eafdaafb5..0eed8a8c7e3b0 100644 --- a/shell/platform/darwin/ios/BUILD.gn +++ b/shell/platform/darwin/ios/BUILD.gn @@ -221,12 +221,9 @@ source_set("flutter_framework_source") { ] if (target_cpu == "arm64") { - libs = [ - "//third_party/updater/target/aarch64-apple-ios/release/libupdater.a", - ] + libs = [ "//flutter/third_party/updater/target/aarch64-apple-ios/release/libupdater.a" ] } else if (target_cpu == "x64") { - libs = - [ "//third_party/updater/target/x86_64-apple-ios/release/libupdater.a" ] + libs = [ "//flutter/third_party/updater/target/x86_64-apple-ios/release/libupdater.a" ] } else { assert(false, "Unsupported target_cpu") }