Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(357)

Side by Side Diff: services/dart/BUILD.gn

Issue 971083002: Create an apptesting framework for dart. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Update upload_binaries.py to add the apptest.dartzip artifact. Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698