Index: mojo/examples/surfaces_app/BUILD.gn |
diff --git a/mojo/examples/surfaces_app/BUILD.gn b/mojo/examples/surfaces_app/BUILD.gn |
deleted file mode 100644 |
index d348fce50251053591acad99ca8205ed9d97ca0b..0000000000000000000000000000000000000000 |
--- a/mojo/examples/surfaces_app/BUILD.gn |
+++ /dev/null |
@@ -1,138 +0,0 @@ |
-# Copyright 2014 The Chromium Authors. All rights reserved. |
-# Use of this source code is governed by a BSD-style license that can be |
-# found in the LICENSE file. |
- |
-import("//mojo/public/tools/bindings/mojom.gni") |
- |
-group("surfaces_app") { |
- deps = [ |
- ":child_app", |
- ":child_gl_app", |
- ":parent_app", |
- ] |
-} |
- |
-shared_library("parent_app") { |
- output_name = "surfaces_app" |
- |
- deps = [ |
- ":bindings", |
- ":util", |
- "//base", |
- "//cc", |
- "//cc/surfaces", |
- "//skia", |
- "//ui/gfx", |
- "//ui/gfx/geometry", |
- "//mojo/application", |
- "//mojo/common", |
- "//mojo/converters/geometry", |
- "//mojo/converters/surfaces", |
- "//mojo/environment:chromium", |
- "//mojo/public/c/system:for_shared_library", |
- "//mojo/public/cpp/system", |
- "//mojo/services/public/interfaces/geometry", |
- "//mojo/services/public/interfaces/gpu", |
- "//mojo/services/public/interfaces/surfaces", |
- "//mojo/services/public/interfaces/native_viewport", |
- ] |
- |
- sources = [ |
- "embedder.cc", |
- "embedder.h", |
- "surfaces_app.cc", |
- ] |
-} |
- |
- |
-shared_library("child_app") { |
- output_name = "surfaces_child_app" |
- |
- deps = [ |
- ":bindings", |
- ":util", |
- "//base", |
- "//cc", |
- "//cc/surfaces", |
- "//mojo/application", |
- "//mojo/common", |
- "//mojo/converters/geometry", |
- "//mojo/converters/surfaces", |
- "//mojo/environment:chromium", |
- "//mojo/public/c/system:for_shared_library", |
- "//mojo/public/cpp/bindings", |
- "//mojo/services/public/interfaces/geometry", |
- "//mojo/services/public/interfaces/surfaces", |
- "//mojo/services/public/interfaces/surfaces:surface_id", |
- "//skia", |
- "//ui/gfx", |
- "//ui/gfx/geometry", |
- ] |
- |
- sources = [ |
- "child_app.cc", |
- "child_impl.cc", |
- "child_impl.h", |
- ] |
-} |
- |
-shared_library("child_gl_app") { |
- output_name = "surfaces_child_gl_app" |
- |
- deps = [ |
- ":bindings", |
- ":util", |
- "//base", |
- "//cc", |
- "//cc/surfaces", |
- "//gpu/command_buffer/common", |
- "//mojo/application", |
- "//mojo/common", |
- "//mojo/converters/geometry", |
- "//mojo/converters/surfaces", |
- "//mojo/environment:chromium", |
- "//mojo/examples/sample_app:spinning_cube", |
- "//mojo/public/c/system:for_shared_library", |
- "//mojo/public/cpp/bindings", |
- "//mojo/public/cpp/environment", |
- "//mojo/public/cpp/system", |
- "//mojo/public/gles2:for_shared_library", |
- "//mojo/services/public/interfaces/geometry", |
- "//mojo/services/public/interfaces/gpu", |
- "//mojo/services/public/interfaces/surfaces", |
- "//mojo/services/public/interfaces/surfaces:surface_id", |
- "//skia", |
- "//ui/gfx", |
- "//ui/gfx/geometry", |
- ] |
- |
- sources = [ |
- "child_gl_app.cc", |
- "child_gl_impl.cc", |
- "child_gl_impl.h", |
- ] |
-} |
- |
-source_set("util") { |
- deps = [ |
- "//cc", |
- "//skia", |
- "//ui/gfx", |
- "//ui/gfx/geometry", |
- ] |
- |
- sources = [ |
- "surfaces_util.cc", |
- "surfaces_util.h", |
- ] |
-} |
- |
-mojom("bindings") { |
- deps = [ |
- "//mojo/services/public/interfaces/geometry", |
- "//mojo/services/public/interfaces/surfaces", |
- "//mojo/services/public/interfaces/surfaces:surface_id", |
- ] |
- |
- sources = [ "child.mojom" ] |
-} |