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/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 | 7 |
8 executable("mojo_shell") { | 8 executable("mojo_shell") { |
9 deps = [ | 9 deps = [ |
10 ":lib", | 10 ":lib", |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 | 166 |
167 # GYP version: mojo/mojo.gyp:mojo_shell_test_support | 167 # GYP version: mojo/mojo.gyp:mojo_shell_test_support |
168 source_set("test_support") { | 168 source_set("test_support") { |
169 sources = [ | 169 sources = [ |
170 "shell_test_helper.cc", | 170 "shell_test_helper.cc", |
171 "shell_test_helper.h", | 171 "shell_test_helper.h", |
172 ] | 172 ] |
173 | 173 |
174 deps = [ | 174 deps = [ |
175 ":lib", | 175 ":lib", |
176 "//base:base_static", | |
177 "//mojo/system", | 176 "//mojo/system", |
178 ] | 177 ] |
179 } | 178 } |
180 | 179 |
181 # GYP version: mojo/mojo.gyp:external_application_tests | 180 # GYP version: mojo/mojo.gyp:external_application_tests |
182 test("mojo_external_application_tests") { | 181 test("mojo_external_application_tests") { |
183 deps = [ | 182 deps = [ |
184 ":lib", | 183 ":lib", |
185 ":external_application_registrar_connection", | 184 ":external_application_registrar_connection", |
186 "//base", | 185 "//base", |
187 "//base/test:test_support", | 186 "//base/test:test_support", |
188 "//testing/gtest", | 187 "//testing/gtest", |
189 "//net:test_support", | 188 "//net:test_support", |
190 "//url", | 189 "//url", |
191 "//mojo/application_manager", | 190 "//mojo/application_manager", |
192 "//mojo/common", | 191 "//mojo/common", |
193 "//mojo/environment:chromium", | 192 "//mojo/environment:chromium", |
194 "//mojo/system", | 193 "//mojo/system", |
195 ] | 194 ] |
196 | 195 |
197 sources = [ | 196 sources = [ |
198 "incoming_connection_listener_unittest.cc", | 197 "incoming_connection_listener_unittest.cc", |
199 "external_application_listener_unittest.cc", | 198 "external_application_listener_unittest.cc", |
200 "external_application_test_main.cc", | 199 "external_application_test_main.cc", |
201 ] | 200 ] |
202 } | 201 } |
OLD | NEW |