| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 mojo_native_application("child_gl_app") { | 79 mojo_native_application("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 "//cc/surfaces:surface_id", | 88 "//cc/surfaces:surface_id", |
| 89 "//examples/sample_app:spinning_cube", | 89 "//examples/spinning_cube:lib", |
| 90 "//gpu/command_buffer/common", | 90 "//gpu/command_buffer/common", |
| 91 "//mojo/application", | 91 "//mojo/application", |
| 92 "//mojo/common", | 92 "//mojo/common", |
| 93 "//mojo/converters/geometry", | 93 "//mojo/converters/geometry", |
| 94 "//mojo/converters/surfaces", | 94 "//mojo/converters/surfaces", |
| 95 "//mojo/environment:chromium", | 95 "//mojo/environment:chromium", |
| 96 "//mojo/public/c/gles2", | 96 "//mojo/public/c/gles2", |
| 97 "//mojo/public/cpp/bindings", | 97 "//mojo/public/cpp/bindings", |
| 98 "//mojo/public/cpp/environment", | 98 "//mojo/public/cpp/environment", |
| 99 "//mojo/public/cpp/system", | 99 "//mojo/public/cpp/system", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 "//mojo/services/surfaces/public/interfaces", | 133 "//mojo/services/surfaces/public/interfaces", |
| 134 "//mojo/services/surfaces/public/interfaces:surface_id", | 134 "//mojo/services/surfaces/public/interfaces:surface_id", |
| 135 ] | 135 ] |
| 136 | 136 |
| 137 import_dirs = [ get_path_info("../../mojo/services", "abspath") ] | 137 import_dirs = [ get_path_info("../../mojo/services", "abspath") ] |
| 138 | 138 |
| 139 sources = [ | 139 sources = [ |
| 140 "child.mojom", | 140 "child.mojom", |
| 141 ] | 141 ] |
| 142 } | 142 } |
| OLD | NEW |