| 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/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 | 6 |
| 7 group("surfaces_app") { | 7 group("surfaces_app") { |
| 8 deps = [ | 8 deps = [ |
| 9 ":child_app", | 9 ":child_app", |
| 10 ":child_gl_app", | 10 ":child_gl_app", |
| 11 ":parent_app", | 11 ":parent_app", |
| 12 ] | 12 ] |
| 13 } | 13 } |
| 14 | 14 |
| 15 # GYP version: mojo/mojo_examples.gypi:mojo_surfaces_app | |
| 16 shared_library("parent_app") { | 15 shared_library("parent_app") { |
| 17 output_name = "mojo_surfaces_app" | 16 output_name = "mojo_surfaces_app" |
| 18 | 17 |
| 19 deps = [ | 18 deps = [ |
| 20 ":bindings", | 19 ":bindings", |
| 21 ":util", | 20 ":util", |
| 22 "//base", | 21 "//base", |
| 23 "//cc", | 22 "//cc", |
| 24 "//cc/surfaces", | 23 "//cc/surfaces", |
| 25 "//skia", | 24 "//skia", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 39 ] | 38 ] |
| 40 | 39 |
| 41 sources = [ | 40 sources = [ |
| 42 "embedder.cc", | 41 "embedder.cc", |
| 43 "embedder.h", | 42 "embedder.h", |
| 44 "surfaces_app.cc", | 43 "surfaces_app.cc", |
| 45 ] | 44 ] |
| 46 } | 45 } |
| 47 | 46 |
| 48 | 47 |
| 49 # GYP version: mojo/mojo_examples.gypi:mojo_surfaces_child_app | |
| 50 shared_library("child_app") { | 48 shared_library("child_app") { |
| 51 output_name = "mojo_surfaces_child_app" | 49 output_name = "mojo_surfaces_child_app" |
| 52 | 50 |
| 53 deps = [ | 51 deps = [ |
| 54 ":bindings", | 52 ":bindings", |
| 55 ":util", | 53 ":util", |
| 56 "//base", | 54 "//base", |
| 57 "//cc", | 55 "//cc", |
| 58 "//cc/surfaces", | 56 "//cc/surfaces", |
| 59 "//mojo/application", | 57 "//mojo/application", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 71 "//ui/gfx/geometry", | 69 "//ui/gfx/geometry", |
| 72 ] | 70 ] |
| 73 | 71 |
| 74 sources = [ | 72 sources = [ |
| 75 "child_app.cc", | 73 "child_app.cc", |
| 76 "child_impl.cc", | 74 "child_impl.cc", |
| 77 "child_impl.h", | 75 "child_impl.h", |
| 78 ] | 76 ] |
| 79 } | 77 } |
| 80 | 78 |
| 81 # GYP version: mojo/mojo_examples.gypi:mojo_surfaces_child_gl_app | |
| 82 shared_library("child_gl_app") { | 79 shared_library("child_gl_app") { |
| 83 output_name = "mojo_surfaces_child_gl_app" | 80 output_name = "mojo_surfaces_child_gl_app" |
| 84 | 81 |
| 85 deps = [ | 82 deps = [ |
| 86 ":bindings", | 83 ":bindings", |
| 87 ":util", | 84 ":util", |
| 88 "//base", | 85 "//base", |
| 89 "//cc", | 86 "//cc", |
| 90 "//cc/surfaces", | 87 "//cc/surfaces", |
| 91 "//gpu/command_buffer/common", | 88 "//gpu/command_buffer/common", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 "//ui/gfx", | 120 "//ui/gfx", |
| 124 "//ui/gfx/geometry", | 121 "//ui/gfx/geometry", |
| 125 ] | 122 ] |
| 126 | 123 |
| 127 sources = [ | 124 sources = [ |
| 128 "surfaces_util.cc", | 125 "surfaces_util.cc", |
| 129 "surfaces_util.h", | 126 "surfaces_util.h", |
| 130 ] | 127 ] |
| 131 } | 128 } |
| 132 | 129 |
| 133 # GYP version: mojo/mojo_examples.gypi:mojo_surfaces_app_bindings | |
| 134 mojom("bindings") { | 130 mojom("bindings") { |
| 135 deps = [ | 131 deps = [ |
| 136 "//mojo/services/public/interfaces/geometry", | 132 "//mojo/services/public/interfaces/geometry", |
| 137 "//mojo/services/public/interfaces/surfaces", | 133 "//mojo/services/public/interfaces/surfaces", |
| 138 "//mojo/services/public/interfaces/surfaces:surface_id", | 134 "//mojo/services/public/interfaces/surfaces:surface_id", |
| 139 ] | 135 ] |
| 140 | 136 |
| 141 sources = [ "child.mojom" ] | 137 sources = [ "child.mojom" ] |
| 142 } | 138 } |
| OLD | NEW |