diff --git a/DEPS b/DEPS index a34323613c..4ddd0f7c07 100644 --- a/DEPS +++ b/DEPS @@ -125,8 +125,8 @@ deps = { 'src/garnet': Var('fuchsia_git') + '/garnet' + '@' + '73eeb0583e7967016ad7386a90353bf6937488b9', - 'src/lib/tonic': - Var('fuchsia_git') + '/tonic' + '@' + '124cc47529d884bb72f4911212b3f09e6b9f330b', + 'src/topaz/lib/tonic': + Var('fuchsia_git') + '/tonic' + '@' + '38c5b3b7f5968be3c5ef89a14797365adbed25e1', 'src/third_party/benchmark': Var('fuchsia_git') + '/third_party/benchmark' + '@' + '296537bc48d380adf21567c5d736ab79f5363d22', diff --git a/engine/src/flutter/lib/io/BUILD.gn b/engine/src/flutter/lib/io/BUILD.gn index 4e34b054d6..9b5bb25de6 100644 --- a/engine/src/flutter/lib/io/BUILD.gn +++ b/engine/src/flutter/lib/io/BUILD.gn @@ -12,6 +12,6 @@ source_set("io") { "//dart/runtime:dart_api", "//dart/runtime/bin:embedded_dart_io", "//garnet/public/lib/fxl", - "//lib/tonic/converter", + "//topaz/lib/tonic/converter", ] } diff --git a/engine/src/flutter/lib/ui/BUILD.gn b/engine/src/flutter/lib/ui/BUILD.gn index 9569671e3c..8af9bad701 100644 --- a/engine/src/flutter/lib/ui/BUILD.gn +++ b/engine/src/flutter/lib/ui/BUILD.gn @@ -93,10 +93,10 @@ source_set("ui") { "//flutter/glue", "//flutter/sky/engine", "//flutter/third_party/txt", - "//lib/tonic", "//third_party/rapidjson", "//third_party/skia", "//third_party/skia:gpu", + "//topaz/lib/tonic", ] if (is_fuchsia) { deps += [ "//garnet/public/dart-pkg/zircon" ] diff --git a/engine/src/flutter/runtime/BUILD.gn b/engine/src/flutter/runtime/BUILD.gn index ae0941fc77..1adabf0111 100644 --- a/engine/src/flutter/runtime/BUILD.gn +++ b/engine/src/flutter/runtime/BUILD.gn @@ -79,11 +79,11 @@ source_set("runtime") { "//flutter/lib/io", "//flutter/lib/ui", "//flutter/sky/engine/platform", + "//flutter/third_party/txt", "//garnet/public/lib/fxl", - "//lib/tonic", "//third_party/rapidjson", "//third_party/skia", - "//flutter/third_party/txt", + "//topaz/lib/tonic", ] defines = [] @@ -96,7 +96,7 @@ source_set("runtime") { } if (flutter_runtime_mode != "release") { - deps += [ "//lib/tonic/debugger" ] + deps += [ "//topaz/lib/tonic/debugger" ] } # In AOT mode, precompiled snapshots contain the instruction buffer. diff --git a/engine/src/flutter/shell/common/BUILD.gn b/engine/src/flutter/shell/common/BUILD.gn index b9694a80aa..2e4c433e9c 100644 --- a/engine/src/flutter/shell/common/BUILD.gn +++ b/engine/src/flutter/shell/common/BUILD.gn @@ -114,9 +114,12 @@ source_set("common") { "//flutter/synchronization", "//flutter/third_party/txt", "//garnet/public/lib/fxl", - "//lib/tonic", "//third_party/rapidjson", "//third_party/skia", "//third_party/skia:gpu", ] + + public_deps = [ + "//topaz/lib/tonic", + ] } diff --git a/engine/src/flutter/shell/platform/embedder/BUILD.gn b/engine/src/flutter/shell/platform/embedder/BUILD.gn index 156b8f4710..a039d8c573 100644 --- a/engine/src/flutter/shell/platform/embedder/BUILD.gn +++ b/engine/src/flutter/shell/platform/embedder/BUILD.gn @@ -19,8 +19,8 @@ source_set("embedder") { "//flutter/shell/common", "//flutter/shell/gpu", "//garnet/public/lib/fxl", - "//lib/tonic", "//third_party/skia", + "//topaz/lib/tonic", ] } diff --git a/engine/src/flutter/shell/platform/linux/BUILD.gn b/engine/src/flutter/shell/platform/linux/BUILD.gn index 8c43c7000f..52ab272d5c 100644 --- a/engine/src/flutter/shell/platform/linux/BUILD.gn +++ b/engine/src/flutter/shell/platform/linux/BUILD.gn @@ -17,7 +17,7 @@ executable("linux") { "//flutter/shell/common", "//flutter/shell/testing", "//garnet/public/lib/fxl", - "//lib/tonic", "//third_party/skia", + "//topaz/lib/tonic", ] }