| 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
| 7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 | 8 |
| 9 group("wm_flow") { | 9 group("wm_flow") { |
| 10 deps = [ | 10 deps = [ |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 "wm/wm.cc", | 23 "wm/wm.cc", |
| 24 ] | 24 ] |
| 25 | 25 |
| 26 deps = [ | 26 deps = [ |
| 27 ":wm_bindings", | 27 ":wm_bindings", |
| 28 "//base", | 28 "//base", |
| 29 "//mojo/application", | 29 "//mojo/application", |
| 30 "//mojo/converters/geometry", | 30 "//mojo/converters/geometry", |
| 31 "//mojo/public/interfaces/application", | 31 "//mojo/public/interfaces/application", |
| 32 "//mojo/services/input_events/interfaces", | 32 "//mojo/services/input_events/interfaces", |
| 33 "//mojo/services/view_manager/public/cpp", | 33 "//mojo/services/view_manager/cpp", |
| 34 "//services/window_manager:lib", | 34 "//services/window_manager:lib", |
| 35 "//skia", | 35 "//skia", |
| 36 "//ui/gfx/geometry", | 36 "//ui/gfx/geometry", |
| 37 "//url", | 37 "//url", |
| 38 ] | 38 ] |
| 39 } | 39 } |
| 40 | 40 |
| 41 mojo_native_application("app") { | 41 mojo_native_application("app") { |
| 42 output_name = "wm_flow_app" | 42 output_name = "wm_flow_app" |
| 43 | 43 |
| 44 sources = [ | 44 sources = [ |
| 45 "app/app.cc", | 45 "app/app.cc", |
| 46 ] | 46 ] |
| 47 | 47 |
| 48 deps = [ | 48 deps = [ |
| 49 ":embedder_bindings", | 49 ":embedder_bindings", |
| 50 ":embeddee_bindings", | 50 ":embeddee_bindings", |
| 51 "//base", | 51 "//base", |
| 52 "//examples/bitmap_uploader", | 52 "//examples/bitmap_uploader", |
| 53 "//mojo/application", | 53 "//mojo/application", |
| 54 "//mojo/common", | 54 "//mojo/common", |
| 55 "//mojo/public/interfaces/application:application", | 55 "//mojo/public/interfaces/application:application", |
| 56 "//mojo/services/view_manager/public/cpp", | 56 "//mojo/services/view_manager/cpp", |
| 57 "//services/window_manager:lib", | 57 "//services/window_manager:lib", |
| 58 "//skia", | 58 "//skia", |
| 59 "//url", | 59 "//url", |
| 60 ] | 60 ] |
| 61 } | 61 } |
| 62 | 62 |
| 63 mojo_native_application("embedded") { | 63 mojo_native_application("embedded") { |
| 64 output_name = "wm_flow_embedded" | 64 output_name = "wm_flow_embedded" |
| 65 | 65 |
| 66 sources = [ | 66 sources = [ |
| 67 "embedded/embedded.cc", | 67 "embedded/embedded.cc", |
| 68 ] | 68 ] |
| 69 | 69 |
| 70 deps = [ | 70 deps = [ |
| 71 ":embeddee_bindings", | 71 ":embeddee_bindings", |
| 72 ":embedder_bindings", | 72 ":embedder_bindings", |
| 73 "//base", | 73 "//base", |
| 74 "//examples/bitmap_uploader", | 74 "//examples/bitmap_uploader", |
| 75 "//mojo/application", | 75 "//mojo/application", |
| 76 "//mojo/services/view_manager/public/cpp", | 76 "//mojo/services/view_manager/cpp", |
| 77 "//services/window_manager:lib", | 77 "//services/window_manager:lib", |
| 78 "//skia", | 78 "//skia", |
| 79 "//url", | 79 "//url", |
| 80 ] | 80 ] |
| 81 } | 81 } |
| 82 | 82 |
| 83 mojom("wm_bindings") { | 83 mojom("wm_bindings") { |
| 84 sources = [ | 84 sources = [ |
| 85 "wm/window_frame_host.mojom", | 85 "wm/window_frame_host.mojom", |
| 86 ] | 86 ] |
| 87 } | 87 } |
| 88 | 88 |
| 89 mojom("embedder_bindings") { | 89 mojom("embedder_bindings") { |
| 90 sources = [ | 90 sources = [ |
| 91 "app/embedder.mojom", | 91 "app/embedder.mojom", |
| 92 ] | 92 ] |
| 93 } | 93 } |
| 94 | 94 |
| 95 mojom("embeddee_bindings") { | 95 mojom("embeddee_bindings") { |
| 96 sources = [ | 96 sources = [ |
| 97 "embedded/embeddee.mojom", | 97 "embedded/embeddee.mojom", |
| 98 ] | 98 ] |
| 99 } | 99 } |
| OLD | NEW |