| 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 19 matching lines...) Expand all Loading... |
| 30 "gpu/ganesh_context.cc", | 30 "gpu/ganesh_context.cc", |
| 31 "gpu/ganesh_context.h", | 31 "gpu/ganesh_context.h", |
| 32 "gpu/ganesh_surface.cc", | 32 "gpu/ganesh_surface.cc", |
| 33 "gpu/ganesh_surface.h", | 33 "gpu/ganesh_surface.h", |
| 34 "gpu/rasterizer.cc", | 34 "gpu/rasterizer.cc", |
| 35 "gpu/rasterizer.h", | 35 "gpu/rasterizer.h", |
| 36 "gpu_delegate.cc", | 36 "gpu_delegate.cc", |
| 37 "gpu_delegate.h", | 37 "gpu_delegate.h", |
| 38 "platform_view.cc", | 38 "platform_view.cc", |
| 39 "platform_view.h", | 39 "platform_view.h", |
| 40 "service_provider.cc", |
| 40 "service_provider.h", | 41 "service_provider.h", |
| 41 "shell.cc", | 42 "shell.cc", |
| 42 "shell.h", | 43 "shell.h", |
| 43 "shell_view.cc", | 44 "shell_view.cc", |
| 44 "shell_view.h", | 45 "shell_view.h", |
| 45 "ui/animator.cc", | 46 "ui/animator.cc", |
| 46 "ui/animator.h", | 47 "ui/animator.h", |
| 47 "ui/engine.cc", | 48 "ui/engine.cc", |
| 48 "ui/engine.h", | 49 "ui/engine.h", |
| 49 "ui/input_event_converter.cc", | 50 "ui/input_event_converter.cc", |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 ":common", | 163 ":common", |
| 163 "//sky/services/ns_net", | 164 "//sky/services/ns_net", |
| 164 ] | 165 ] |
| 165 } | 166 } |
| 166 | 167 |
| 167 deps = [ | 168 deps = [ |
| 168 ":$scaffolding_target", | 169 ":$scaffolding_target", |
| 169 ":sky_resources", | 170 ":sky_resources", |
| 170 ] | 171 ] |
| 171 } | 172 } |
| 173 } else if (is_linux) { |
| 174 executable("shell") { |
| 175 output_name = "sky_shell" |
| 176 |
| 177 sources = [ |
| 178 "linux/main.cc", |
| 179 "linux/platform_service_provider_linux.cc", |
| 180 "linux/platform_view_linux.cc", |
| 181 ] |
| 182 |
| 183 deps = common_deps + [ ":common" ] |
| 184 } |
| 172 } else { | 185 } else { |
| 173 assert(false, "Unsupported platform") | 186 assert(false, "Unsupported platform") |
| 174 } | 187 } |
| OLD | NEW |