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", |
11 "//mojo/edk/system", | 11 "//mojo/edk/system", |
12 "//mojo/public/cpp/application", | 12 "//mojo/public/cpp/application", |
13 "//mojo/public/interfaces/application", | 13 "//mojo/public/interfaces/application", |
14 "//mojo/services/asset_bundle/public/interfaces", | 14 "//mojo/services/asset_bundle/public/interfaces", |
15 "//mojo/services/navigation/public/interfaces", | 15 "//mojo/services/navigation/public/interfaces", |
16 "//mojo/services/network/public/interfaces", | 16 "//mojo/services/network/public/interfaces", |
17 "//services/asset_bundle:lib", | 17 "//services/asset_bundle:lib", |
18 "//skia", | 18 "//skia", |
19 "//sky/engine", | 19 "//sky/engine", |
20 "//sky/engine/tonic", | 20 "//sky/engine/tonic", |
21 "//sky/engine/wtf", | 21 "//sky/engine/wtf", |
22 "//sky/services/platform", | 22 "//sky/services/platform", |
23 "//sky/services/viewport", | 23 "//sky/services/viewport", |
| 24 "//sky/shell/dart", |
24 "//ui/gfx/geometry", | 25 "//ui/gfx/geometry", |
25 "//ui/gl", | 26 "//ui/gl", |
26 ] | 27 ] |
27 | 28 |
28 source_set("common") { | 29 source_set("common") { |
29 sources = [ | 30 sources = [ |
30 "gpu/ganesh_context.cc", | 31 "gpu/ganesh_context.cc", |
31 "gpu/ganesh_context.h", | 32 "gpu/ganesh_context.h", |
32 "gpu/ganesh_surface.cc", | 33 "gpu/ganesh_surface.cc", |
33 "gpu/ganesh_surface.h", | 34 "gpu/ganesh_surface.h", |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 "linux/main.cc", | 179 "linux/main.cc", |
179 "linux/platform_service_provider_linux.cc", | 180 "linux/platform_service_provider_linux.cc", |
180 "linux/platform_view_linux.cc", | 181 "linux/platform_view_linux.cc", |
181 ] | 182 ] |
182 | 183 |
183 deps = common_deps + [ ":common" ] | 184 deps = common_deps + [ ":common" ] |
184 } | 185 } |
185 } else { | 186 } else { |
186 assert(false, "Unsupported platform") | 187 assert(false, "Unsupported platform") |
187 } | 188 } |
OLD | NEW |