| 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", |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 | 78 |
| 79 shared_library("child_gl_app") { | 79 shared_library("child_gl_app") { |
| 80 output_name = "surfaces_child_gl_app" | 80 output_name = "surfaces_child_gl_app" |
| 81 | 81 |
| 82 deps = [ | 82 deps = [ |
| 83 ":bindings", | 83 ":bindings", |
| 84 ":util", | 84 ":util", |
| 85 "//base", | 85 "//base", |
| 86 "//cc", | 86 "//cc", |
| 87 "//cc/surfaces", | 87 "//cc/surfaces", |
| 88 "//examples/sample_app:spinning_cube", |
| 88 "//gpu/command_buffer/common", | 89 "//gpu/command_buffer/common", |
| 89 "//mojo/application", | 90 "//mojo/application", |
| 90 "//mojo/common", | 91 "//mojo/common", |
| 91 "//mojo/converters/geometry", | 92 "//mojo/converters/geometry", |
| 92 "//mojo/converters/surfaces", | 93 "//mojo/converters/surfaces", |
| 93 "//mojo/environment:chromium", | 94 "//mojo/environment:chromium", |
| 94 "//mojo/examples/sample_app:spinning_cube", | |
| 95 "//mojo/public/c/system:for_shared_library", | 95 "//mojo/public/c/system:for_shared_library", |
| 96 "//mojo/public/cpp/bindings", | 96 "//mojo/public/cpp/bindings", |
| 97 "//mojo/public/cpp/environment", | 97 "//mojo/public/cpp/environment", |
| 98 "//mojo/public/cpp/system", | 98 "//mojo/public/cpp/system", |
| 99 "//mojo/public/gles2:for_shared_library", | 99 "//mojo/public/gles2:for_shared_library", |
| 100 "//mojo/services/public/interfaces/geometry", | 100 "//mojo/services/public/interfaces/geometry", |
| 101 "//mojo/services/public/interfaces/gpu", | 101 "//mojo/services/public/interfaces/gpu", |
| 102 "//mojo/services/public/interfaces/surfaces", | 102 "//mojo/services/public/interfaces/surfaces", |
| 103 "//mojo/services/public/interfaces/surfaces:surface_id", | 103 "//mojo/services/public/interfaces/surfaces:surface_id", |
| 104 "//skia", | 104 "//skia", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 129 | 129 |
| 130 mojom("bindings") { | 130 mojom("bindings") { |
| 131 deps = [ | 131 deps = [ |
| 132 "//mojo/services/public/interfaces/geometry", | 132 "//mojo/services/public/interfaces/geometry", |
| 133 "//mojo/services/public/interfaces/surfaces", | 133 "//mojo/services/public/interfaces/surfaces", |
| 134 "//mojo/services/public/interfaces/surfaces:surface_id", | 134 "//mojo/services/public/interfaces/surfaces:surface_id", |
| 135 ] | 135 ] |
| 136 | 136 |
| 137 sources = [ "child.mojom" ] | 137 sources = [ "child.mojom" ] |
| 138 } | 138 } |
| OLD | NEW |