OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 mojo_native_application("view_manager") { | 8 mojo_native_application("view_manager") { |
9 output_name = "view_manager_service" | 9 output_name = "view_manager_service" |
10 | 10 |
(...skipping 29 matching lines...) Expand all Loading... |
40 "//mojo/converters/geometry", | 40 "//mojo/converters/geometry", |
41 "//mojo/environment:chromium", | 41 "//mojo/environment:chromium", |
42 "//mojo/public/cpp/bindings:bindings", | 42 "//mojo/public/cpp/bindings:bindings", |
43 "//mojo/services/geometry/cpp", | 43 "//mojo/services/geometry/cpp", |
44 "//mojo/services/gfx/composition/cpp", | 44 "//mojo/services/gfx/composition/cpp", |
45 "//mojo/services/gfx/composition/interfaces", | 45 "//mojo/services/gfx/composition/interfaces", |
46 "//mojo/services/ui/views/cpp", | 46 "//mojo/services/ui/views/cpp", |
47 "//mojo/services/ui/views/interfaces", | 47 "//mojo/services/ui/views/interfaces", |
48 ] | 48 ] |
49 } | 49 } |
| 50 |
| 51 mojo_native_application("view_manager_apptests") { |
| 52 output_name = "view_manager_apptests" |
| 53 |
| 54 testonly = true |
| 55 |
| 56 sources = [ |
| 57 "tests/view_manager_test.cc", |
| 58 ] |
| 59 |
| 60 deps = [ |
| 61 "//base", |
| 62 "//mojo/application", |
| 63 "//mojo/application:test_support", |
| 64 "//mojo/common", |
| 65 "//mojo/common:tracing_impl", |
| 66 "//mojo/converters/geometry", |
| 67 "//mojo/environment:chromium", |
| 68 "//mojo/public/cpp/bindings", |
| 69 "//mojo/public/cpp/bindings:bindings", |
| 70 "//mojo/services/geometry/cpp", |
| 71 "//mojo/services/gfx/composition/cpp", |
| 72 "//mojo/services/gfx/composition/interfaces", |
| 73 "//mojo/services/ui/views/cpp", |
| 74 "//mojo/services/ui/views/interfaces", |
| 75 ] |
| 76 } |
OLD | NEW |