| 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) | |
| 10 | |
| 11 group("wm_flow") { | 9 group("wm_flow") { |
| 12 deps = [ | 10 deps = [ |
| 13 ":app", | 11 ":app", |
| 14 ":embedded", | 12 ":embedded", |
| 15 ":wm", | 13 ":wm", |
| 16 ] | 14 ] |
| 17 } | 15 } |
| 18 | 16 |
| 19 mojo_native_application("wm") { | 17 mojo_native_application("wm") { |
| 20 output_name = "wm_flow_wm" | 18 output_name = "wm_flow_wm" |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 sources = [ | 88 sources = [ |
| 91 "app/embedder.mojom", | 89 "app/embedder.mojom", |
| 92 ] | 90 ] |
| 93 } | 91 } |
| 94 | 92 |
| 95 mojom("embeddee_bindings") { | 93 mojom("embeddee_bindings") { |
| 96 sources = [ | 94 sources = [ |
| 97 "embedded/embeddee.mojom", | 95 "embedded/embeddee.mojom", |
| 98 ] | 96 ] |
| 99 } | 97 } |
| OLD | NEW |