| Index: examples/ui/tile/BUILD.gn
|
| diff --git a/examples/ganesh_app/BUILD.gn b/examples/ui/tile/BUILD.gn
|
| similarity index 58%
|
| copy from examples/ganesh_app/BUILD.gn
|
| copy to examples/ui/tile/BUILD.gn
|
| index 915558c53a51c5be2d7931ce8340f3aa66f26ab9..fa3109455117b8295e4baffe5237c693a98fe833 100644
|
| --- a/examples/ganesh_app/BUILD.gn
|
| +++ b/examples/ui/tile/BUILD.gn
|
| @@ -4,32 +4,31 @@
|
|
|
| import("//mojo/public/mojo_application.gni")
|
|
|
| -mojo_native_application("ganesh_app") {
|
| +mojo_native_application("tile_view") {
|
| sources = [
|
| - "ganesh_app.cc",
|
| - "ganesh_view.cc",
|
| - "ganesh_view.h",
|
| - "texture_uploader.cc",
|
| - "texture_uploader.h",
|
| + "main.cc",
|
| + "tile_app.cc",
|
| + "tile_app.h",
|
| + "tile_view.cc",
|
| + "tile_view.h",
|
| ]
|
|
|
| deps = [
|
| "//base",
|
| "//mojo/application",
|
| - "//mojo/common:tracing_impl",
|
| + "//mojo/common",
|
| "//mojo/environment:chromium",
|
| "//mojo/gpu",
|
| "//mojo/public/c/gpu",
|
| + "//mojo/public/c/gpu:gpu_onscreen",
|
| "//mojo/public/cpp/bindings",
|
| + "//mojo/public/cpp/environment",
|
| "//mojo/public/cpp/system",
|
| - "//mojo/public/interfaces/application",
|
| - "//mojo/services/geometry/cpp",
|
| "//mojo/services/geometry/interfaces",
|
| + "//mojo/services/input_events/interfaces",
|
| "//mojo/services/surfaces/cpp",
|
| "//mojo/services/surfaces/interfaces",
|
| - "//mojo/services/surfaces/interfaces:surface_id",
|
| - "//mojo/services/view_manager/cpp",
|
| - "//mojo/skia",
|
| - "//skia",
|
| + "//mojo/services/ui/views/interfaces",
|
| + "//url",
|
| ]
|
| }
|
|
|