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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 "shell_test_main.cc", | 157 "shell_test_main.cc", |
158 ] | 158 ] |
159 | 159 |
160 if (is_android) { | 160 if (is_android) { |
161 deps += [ | 161 deps += [ |
162 # TODO(GYP): | 162 # TODO(GYP): |
163 #'../testing/android/native_test.gyp:native_test_native_code', | 163 #'../testing/android/native_test.gyp:native_test_native_code', |
164 ] | 164 ] |
165 } | 165 } |
166 } | 166 } |
| 167 |
| 168 # GYP version: mojo/mojo.gyp:mojo_shell_test_support |
| 169 source_set("test_support") { |
| 170 sources = [ |
| 171 "shell_test_helper.cc", |
| 172 "shell_test_helper.h", |
| 173 ] |
| 174 |
| 175 deps = [ |
| 176 ":lib", |
| 177 "//base", |
| 178 "//base:base_static", |
| 179 "//mojo/application_manager", |
| 180 "//mojo/system", |
| 181 "//url", |
| 182 ] |
| 183 } |
OLD | NEW |