| Index: examples/surfaces_app/BUILD.gn
|
| diff --git a/examples/surfaces_app/BUILD.gn b/examples/surfaces_app/BUILD.gn
|
| index 0f513669d9c0233455b1e6a2a05cc95437adae1d..b4e1dee8cb7963c6938db2eccb4099cdf6e1e2e9 100644
|
| --- a/examples/surfaces_app/BUILD.gn
|
| +++ b/examples/surfaces_app/BUILD.gn
|
| @@ -2,6 +2,7 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| +import("//mojo/public/mojo_application.gni")
|
| import("//mojo/public/tools/bindings/mojom.gni")
|
|
|
| group("surfaces_app") {
|
| @@ -12,7 +13,7 @@ group("surfaces_app") {
|
| ]
|
| }
|
|
|
| -shared_library("parent_app") {
|
| +mojo_binary_application("parent_app") {
|
| output_name = "surfaces_app"
|
|
|
| deps = [
|
| @@ -45,7 +46,7 @@ shared_library("parent_app") {
|
| }
|
|
|
|
|
| -shared_library("child_app") {
|
| +mojo_binary_application("child_app") {
|
| output_name = "surfaces_child_app"
|
|
|
| deps = [
|
| @@ -76,7 +77,7 @@ shared_library("child_app") {
|
| ]
|
| }
|
|
|
| -shared_library("child_gl_app") {
|
| +mojo_binary_application("child_gl_app") {
|
| output_name = "surfaces_child_gl_app"
|
|
|
| deps = [
|
|
|