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 common_deps = [ | 5 common_deps = [ |
6 "//base", | 6 "//base", |
7 "//base:i18n", | 7 "//base:i18n", |
8 "//build/config/sanitizers:deps", | 8 "//build/config/sanitizers:deps", |
9 "//dart/runtime:libdart", | 9 "//dart/runtime:libdart", |
10 "//mojo/common", | 10 "//mojo/common", |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 ] | 174 ] |
175 } | 175 } |
176 } else if (is_linux) { | 176 } else if (is_linux) { |
177 executable("shell") { | 177 executable("shell") { |
178 output_name = "sky_shell" | 178 output_name = "sky_shell" |
179 | 179 |
180 sources = [ | 180 sources = [ |
181 "linux/main.cc", | 181 "linux/main.cc", |
182 "linux/platform_service_provider_linux.cc", | 182 "linux/platform_service_provider_linux.cc", |
183 "linux/platform_view_linux.cc", | 183 "linux/platform_view_linux.cc", |
| 184 "testing/test_runner.cc", |
| 185 "testing/test_runner.h", |
184 ] | 186 ] |
185 | 187 |
186 deps = common_deps + [ ":common" ] | 188 deps = common_deps + [ |
| 189 ":common", |
| 190 "//sky/services/testing", |
| 191 ] |
187 } | 192 } |
188 } else { | 193 } else { |
189 assert(false, "Unsupported platform") | 194 assert(false, "Unsupported platform") |
190 } | 195 } |
OLD | NEW |