| 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 assert(use_aura) | 9 assert(use_aura) |
| 10 | 10 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 deps = [ | 28 deps = [ |
| 29 "//base", | 29 "//base", |
| 30 "//skia", | 30 "//skia", |
| 31 "//ui/aura", | 31 "//ui/aura", |
| 32 "//ui/views", | 32 "//ui/views", |
| 33 "//ui/wm:wm", | 33 "//ui/wm:wm", |
| 34 "//mojo/application", | 34 "//mojo/application", |
| 35 "//mojo/public/c/system:for_shared_library", | 35 "//mojo/public/c/system:for_shared_library", |
| 36 "//mojo/services/public/cpp/view_manager", | 36 "//mojo/services/public/cpp/view_manager", |
| 37 "//mojo/services/public/interfaces/input_events", | 37 "//mojo/services/public/interfaces/input_events", |
| 38 "//mojo/services/window_manager:lib", | |
| 39 "//mojo/views:views", | 38 "//mojo/views:views", |
| 39 "//services/window_manager:lib", |
| 40 ] | 40 ] |
| 41 } | 41 } |
| 42 | 42 |
| 43 mojo_native_application("app") { | 43 mojo_native_application("app") { |
| 44 output_name = "wm_flow_app" | 44 output_name = "wm_flow_app" |
| 45 | 45 |
| 46 sources = [ | 46 sources = [ |
| 47 "app/app.cc", | 47 "app/app.cc", |
| 48 ] | 48 ] |
| 49 | 49 |
| 50 deps = [ | 50 deps = [ |
| 51 ":embedder_bindings", | 51 ":embedder_bindings", |
| 52 ":embeddee_bindings", | 52 ":embeddee_bindings", |
| 53 "//base", | 53 "//base", |
| 54 "//examples/bitmap_uploader", | 54 "//examples/bitmap_uploader", |
| 55 "//mojo/application", | 55 "//mojo/application", |
| 56 "//mojo/public/c/system:for_shared_library", | 56 "//mojo/public/c/system:for_shared_library", |
| 57 "//mojo/public/interfaces/application:application", | 57 "//mojo/public/interfaces/application:application", |
| 58 "//mojo/services/public/cpp/view_manager", | 58 "//mojo/services/public/cpp/view_manager", |
| 59 "//mojo/services/window_manager:lib", | |
| 60 "//skia", | 59 "//skia", |
| 60 "//services/window_manager:lib", |
| 61 ] | 61 ] |
| 62 } | 62 } |
| 63 | 63 |
| 64 mojo_native_application("embedded") { | 64 mojo_native_application("embedded") { |
| 65 output_name = "wm_flow_embedded" | 65 output_name = "wm_flow_embedded" |
| 66 | 66 |
| 67 sources = [ | 67 sources = [ |
| 68 "embedded/embedded.cc", | 68 "embedded/embedded.cc", |
| 69 ] | 69 ] |
| 70 | 70 |
| 71 deps = [ | 71 deps = [ |
| 72 ":embeddee_bindings", | 72 ":embeddee_bindings", |
| 73 ":embedder_bindings", | 73 ":embedder_bindings", |
| 74 "//base", | 74 "//base", |
| 75 "//examples/bitmap_uploader", | 75 "//examples/bitmap_uploader", |
| 76 "//mojo/application", | 76 "//mojo/application", |
| 77 "//mojo/public/c/system:for_shared_library", | 77 "//mojo/public/c/system:for_shared_library", |
| 78 "//mojo/services/public/cpp/view_manager", | 78 "//mojo/services/public/cpp/view_manager", |
| 79 "//mojo/services/window_manager:lib", | 79 "//services/window_manager:lib", |
| 80 "//skia", | 80 "//skia", |
| 81 ] | 81 ] |
| 82 } | 82 } |
| 83 | 83 |
| 84 mojom("embedder_bindings") { | 84 mojom("embedder_bindings") { |
| 85 sources = [ | 85 sources = [ |
| 86 "app/embedder.mojom", | 86 "app/embedder.mojom", |
| 87 ] | 87 ] |
| 88 } | 88 } |
| 89 | 89 |
| 90 mojom("embeddee_bindings") { | 90 mojom("embeddee_bindings") { |
| 91 sources = [ | 91 sources = [ |
| 92 "embedded/embeddee.mojom", | 92 "embedded/embeddee.mojom", |
| 93 ] | 93 ] |
| 94 } | 94 } |
| OLD | NEW |