| 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 import("//mojo/system.gni") | 6 import("//mojo/system.gni") |
| 7 | 7 |
| 8 group("surfaces_app") { | 8 group("surfaces_app") { |
| 9 deps = [ | 9 deps = [ |
| 10 ":child_app", | 10 ":child_app", |
| 11 ":parent_app", | 11 ":parent_app", |
| 12 ] | 12 ] |
| 13 } | 13 } |
| 14 | 14 |
| 15 # GYP version: mojo/mojo_examples.gypi:mojo_surfaces_app | 15 # GYP version: mojo/mojo_examples.gypi:mojo_surfaces_app |
| 16 shared_library("parent_app") { | 16 shared_library("parent_app") { |
| 17 output_name = "mojo_surfaces_app" | 17 output_name = "mojo_surfaces_app" |
| 18 | 18 |
| 19 deps = [ | 19 deps = [ |
| 20 ":bindings", | 20 ":bindings", |
| 21 ":util", | 21 ":util", |
| 22 "//base", | 22 "//base", |
| 23 "//cc", | 23 "//cc", |
| 24 "//cc/surfaces", | 24 "//cc/surfaces", |
| 25 "//skia", | 25 "//skia", |
| 26 "//ui/gfx", | 26 "//ui/gfx", |
| 27 "//ui/gfx/geometry", | 27 "//ui/gfx/geometry", |
| 28 "//mojo/application", |
| 28 "//mojo/common", | 29 "//mojo/common", |
| 29 "//mojo/public/cpp/application:chromium", | |
| 30 "//mojo/environment:chromium", | 30 "//mojo/environment:chromium", |
| 31 "//mojo/services/public/interfaces/geometry", | 31 "//mojo/services/public/interfaces/geometry", |
| 32 "//mojo/services/public/cpp/geometry", | 32 "//mojo/services/public/cpp/geometry", |
| 33 "//mojo/services/public/interfaces/surfaces", | 33 "//mojo/services/public/interfaces/surfaces", |
| 34 "//mojo/services/public/cpp/surfaces", | 34 "//mojo/services/public/cpp/surfaces", |
| 35 ] + mojo_system_for_shared_library | 35 ] + mojo_system_for_shared_library |
| 36 | 36 |
| 37 sources = [ | 37 sources = [ |
| 38 "embedder.cc", | 38 "embedder.cc", |
| 39 "embedder.h", | 39 "embedder.h", |
| 40 "surfaces_app.cc", | 40 "surfaces_app.cc", |
| 41 ] | 41 ] |
| 42 } | 42 } |
| 43 | 43 |
| 44 | 44 |
| 45 # GYP version: mojo/mojo_examples.gypi:mojo_surfaces_child_app | 45 # GYP version: mojo/mojo_examples.gypi:mojo_surfaces_child_app |
| 46 shared_library("child_app") { | 46 shared_library("child_app") { |
| 47 output_name = "mojo_surfaces_child_app" | 47 output_name = "mojo_surfaces_child_app" |
| 48 | 48 |
| 49 deps = [ | 49 deps = [ |
| 50 ":bindings", | 50 ":bindings", |
| 51 ":util", | 51 ":util", |
| 52 "//base", | 52 "//base", |
| 53 "//cc", | 53 "//cc", |
| 54 "//cc/surfaces", | 54 "//cc/surfaces", |
| 55 "//skia", | 55 "//skia", |
| 56 "//ui/gfx", | 56 "//ui/gfx", |
| 57 "//ui/gfx/geometry", | 57 "//ui/gfx/geometry", |
| 58 "//mojo/application", |
| 58 "//mojo/common", | 59 "//mojo/common", |
| 59 "//mojo/public/cpp/application:chromium", | |
| 60 "//mojo/environment:chromium", | 60 "//mojo/environment:chromium", |
| 61 "//mojo/services/public/interfaces/geometry", | 61 "//mojo/services/public/interfaces/geometry", |
| 62 "//mojo/services/public/cpp/geometry", | 62 "//mojo/services/public/cpp/geometry", |
| 63 "//mojo/services/public/interfaces/surfaces", | 63 "//mojo/services/public/interfaces/surfaces", |
| 64 "//mojo/services/public/cpp/surfaces", | 64 "//mojo/services/public/cpp/surfaces", |
| 65 ] + mojo_system_for_shared_library | 65 ] + mojo_system_for_shared_library |
| 66 | 66 |
| 67 sources = [ | 67 sources = [ |
| 68 "child_app.cc", | 68 "child_app.cc", |
| 69 "child_impl.cc", | 69 "child_impl.cc", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 85 | 85 |
| 86 # GYP version: mojo/mojo_examples.gypi:mojo_surfaces_app_bindings | 86 # GYP version: mojo/mojo_examples.gypi:mojo_surfaces_app_bindings |
| 87 mojom("bindings") { | 87 mojom("bindings") { |
| 88 deps = [ | 88 deps = [ |
| 89 "//mojo/services/public/interfaces/geometry", | 89 "//mojo/services/public/interfaces/geometry", |
| 90 "//mojo/services/public/interfaces/surfaces", | 90 "//mojo/services/public/interfaces/surfaces", |
| 91 ] | 91 ] |
| 92 | 92 |
| 93 sources = [ "child.mojom" ] | 93 sources = [ "child.mojom" ] |
| 94 } | 94 } |
| OLD | NEW |