| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 "ios/sky_app_delegate.h", | 150 "ios/sky_app_delegate.h", |
| 151 "ios/sky_app_delegate.mm", | 151 "ios/sky_app_delegate.mm", |
| 152 "ios/sky_surface.h", | 152 "ios/sky_surface.h", |
| 153 "ios/sky_surface.mm", | 153 "ios/sky_surface.mm", |
| 154 "ios/sky_view_controller.h", | 154 "ios/sky_view_controller.h", |
| 155 "ios/sky_view_controller.mm", | 155 "ios/sky_view_controller.mm", |
| 156 "platform_view.cc", | 156 "platform_view.cc", |
| 157 "platform_view.h", | 157 "platform_view.h", |
| 158 "shell.cc", | 158 "shell.cc", |
| 159 "shell.h", | 159 "shell.h", |
| 160 "shell_view.cc", |
| 161 "shell_view.h", |
| 160 "ui/animator.cc", | 162 "ui/animator.cc", |
| 161 "ui/animator.h", | 163 "ui/animator.h", |
| 162 "ui/engine.cc", | 164 "ui/engine.cc", |
| 163 "ui/engine.h", | 165 "ui/engine.h", |
| 164 "ui/input_event_converter.cc", | 166 "ui/input_event_converter.cc", |
| 165 "ui/input_event_converter.h", | 167 "ui/input_event_converter.h", |
| 166 "ui/internals.cc", | 168 "ui/internals.cc", |
| 167 "ui/internals.h", | 169 "ui/internals.h", |
| 168 "ui_delegate.cc", | 170 "ui_delegate.cc", |
| 169 "ui_delegate.h", | 171 "ui_delegate.h", |
| 170 ] | 172 ] |
| 171 | 173 |
| 172 ios_deps = [ "//sky/services/ns_net" ] | 174 ios_deps = [ "//sky/services/ns_net" ] |
| 173 | 175 |
| 174 deps = common_deps + ios_deps | 176 deps = common_deps + ios_deps |
| 175 } | 177 } |
| 176 | 178 |
| 177 deps = [ | 179 deps = [ |
| 178 ":$scaffolding_target", | 180 ":$scaffolding_target", |
| 179 ":sky_resources", | 181 ":sky_resources", |
| 180 ] | 182 ] |
| 181 } | 183 } |
| 182 } else { | 184 } else { |
| 183 assert(false, "Unsupported platform") | 185 assert(false, "Unsupported platform") |
| 184 } | 186 } |
| OLD | NEW |