| 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 14 matching lines...) Expand all Loading... |
| 25 "//ui/gfx/geometry", | 25 "//ui/gfx/geometry", |
| 26 "//ui/gl", | 26 "//ui/gl", |
| 27 ] | 27 ] |
| 28 | 28 |
| 29 source_set("common") { | 29 source_set("common") { |
| 30 sources = [ | 30 sources = [ |
| 31 "gpu/ganesh_context.cc", | 31 "gpu/ganesh_context.cc", |
| 32 "gpu/ganesh_context.h", | 32 "gpu/ganesh_context.h", |
| 33 "gpu/ganesh_surface.cc", | 33 "gpu/ganesh_surface.cc", |
| 34 "gpu/ganesh_surface.h", | 34 "gpu/ganesh_surface.h", |
| 35 "gpu/picture_serializer.cc", |
| 36 "gpu/picture_serializer.h", |
| 35 "gpu/rasterizer.cc", | 37 "gpu/rasterizer.cc", |
| 36 "gpu/rasterizer.h", | 38 "gpu/rasterizer.h", |
| 37 "gpu_delegate.cc", | 39 "gpu_delegate.cc", |
| 38 "gpu_delegate.h", | 40 "gpu_delegate.h", |
| 39 "platform_view.cc", | 41 "platform_view.cc", |
| 40 "platform_view.h", | 42 "platform_view.h", |
| 41 "service_provider.cc", | 43 "service_provider.cc", |
| 42 "service_provider.h", | 44 "service_provider.h", |
| 43 "shell.cc", | 45 "shell.cc", |
| 44 "shell.h", | 46 "shell.h", |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 ] | 192 ] |
| 191 | 193 |
| 192 deps = common_deps + [ | 194 deps = common_deps + [ |
| 193 ":common", | 195 ":common", |
| 194 "//sky/services/testing:interfaces", | 196 "//sky/services/testing:interfaces", |
| 195 ] | 197 ] |
| 196 } | 198 } |
| 197 } else { | 199 } else { |
| 198 assert(false, "Unsupported platform") | 200 assert(false, "Unsupported platform") |
| 199 } | 201 } |
| OLD | NEW |