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/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
6 | 6 |
7 group("dart") { | 7 group("dart") { |
8 deps = [ | 8 deps = [ |
9 ":dart_content_handler", | 9 ":dart_content_handler", |
10 ] | 10 ] |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 "//mojo/icu", | 128 "//mojo/icu", |
129 "//mojo/public/cpp/system", | 129 "//mojo/public/cpp/system", |
130 "//mojo/public/cpp/utility", | 130 "//mojo/public/cpp/utility", |
131 "//mojo/public/interfaces/application", | 131 "//mojo/public/interfaces/application", |
132 "//mojo/services/content_handler/public/interfaces", | 132 "//mojo/services/content_handler/public/interfaces", |
133 "//mojo/services/network/public/interfaces", | 133 "//mojo/services/network/public/interfaces", |
134 "//third_party/zlib:zip", | 134 "//third_party/zlib:zip", |
135 "//url:url", | 135 "//url:url", |
136 ] | 136 ] |
137 } | 137 } |
138 | |
139 mojo_native_application("dart_apptests") { | |
140 testonly = true | |
141 | |
142 sources = [ | |
143 "echo_apptest.cc", | |
144 "pingpong_apptest.cc", | |
145 ] | |
146 | |
147 deps = [ | |
148 "//base", | |
149 "//mojo/application", | |
150 "//mojo/application:test_support", | |
151 "//mojo/public/cpp/bindings", | |
152 "//mojo/public/cpp/system", | |
153 "//services/dart/test:echo_service_interface", | |
154 "//services/dart/test:pingpong_service_interface", | |
155 ] | |
156 data_deps = [ | |
157 "//services/dart/test/echo", | |
158 "//services/dart/test/pingpong", | |
159 "//services/dart/test/pingpong_target", | |
160 ] | |
161 } | |
OLD | NEW |