| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
| 6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 | 7 |
| 8 group("surfaces_app") { | 8 group("surfaces_app") { |
| 9 deps = [ | 9 deps = [ |
| 10 ":child_app", | 10 ":child_app", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 "//mojo/services/public/interfaces/native_viewport", | 38 "//mojo/services/public/interfaces/native_viewport", |
| 39 ] | 39 ] |
| 40 | 40 |
| 41 sources = [ | 41 sources = [ |
| 42 "embedder.cc", | 42 "embedder.cc", |
| 43 "embedder.h", | 43 "embedder.h", |
| 44 "surfaces_app.cc", | 44 "surfaces_app.cc", |
| 45 ] | 45 ] |
| 46 } | 46 } |
| 47 | 47 |
| 48 | |
| 49 mojo_native_application("child_app") { | 48 mojo_native_application("child_app") { |
| 50 output_name = "surfaces_child_app" | 49 output_name = "surfaces_child_app" |
| 51 | 50 |
| 52 deps = [ | 51 deps = [ |
| 53 ":bindings", | 52 ":bindings", |
| 54 ":util", | 53 ":util", |
| 55 "//base", | 54 "//base", |
| 56 "//cc", | 55 "//cc", |
| 57 "//cc/surfaces", | 56 "//cc/surfaces", |
| 58 "//cc/surfaces:surface_id", | 57 "//cc/surfaces:surface_id", |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 ] | 127 ] |
| 129 } | 128 } |
| 130 | 129 |
| 131 mojom("bindings") { | 130 mojom("bindings") { |
| 132 deps = [ | 131 deps = [ |
| 133 "//mojo/services/public/interfaces/geometry", | 132 "//mojo/services/public/interfaces/geometry", |
| 134 "//mojo/services/public/interfaces/surfaces", | 133 "//mojo/services/public/interfaces/surfaces", |
| 135 "//mojo/services/public/interfaces/surfaces:surface_id", | 134 "//mojo/services/public/interfaces/surfaces:surface_id", |
| 136 ] | 135 ] |
| 137 | 136 |
| 138 sources = [ "child.mojom" ] | 137 sources = [ |
| 138 "child.mojom", |
| 139 ] |
| 139 } | 140 } |
| OLD | NEW |