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 assert(is_android) | 5 assert(is_android) |
6 | 6 |
7 import("//build/config/android/config.gni") | 7 import("//build/config/android/config.gni") |
8 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
9 | 9 |
10 group("shell") { | 10 group("shell") { |
(...skipping 11 matching lines...) Expand all Loading... |
22 } | 22 } |
23 | 23 |
24 shared_library("sky_shell") { | 24 shared_library("sky_shell") { |
25 sources = [ | 25 sources = [ |
26 "gpu/ganesh_context.cc", | 26 "gpu/ganesh_context.cc", |
27 "gpu/ganesh_context.h", | 27 "gpu/ganesh_context.h", |
28 "gpu/ganesh_surface.cc", | 28 "gpu/ganesh_surface.cc", |
29 "gpu/ganesh_surface.h", | 29 "gpu/ganesh_surface.h", |
30 "gpu/rasterizer.cc", | 30 "gpu/rasterizer.cc", |
31 "gpu/rasterizer.h", | 31 "gpu/rasterizer.h", |
32 "ui/engine.cc", | 32 "gpu_delegate.cc", |
33 "ui/engine.h", | 33 "gpu_delegate.h", |
34 "ui/platform_impl.cc", | |
35 "ui/platform_impl.h", | |
36 "library_loader.cc", | 34 "library_loader.cc", |
37 "shell.cc", | 35 "shell.cc", |
38 "shell.h", | 36 "shell.h", |
39 "sky_main.cc", | 37 "sky_main.cc", |
40 "sky_main.h", | 38 "sky_main.h", |
41 "sky_view.cc", | 39 "sky_view.cc", |
42 "sky_view.h", | 40 "sky_view.h", |
| 41 "ui/engine.cc", |
| 42 "ui/engine.h", |
| 43 "ui/platform_impl.cc", |
| 44 "ui/platform_impl.h", |
| 45 "ui_delegate.cc", |
| 46 "ui_delegate.h", |
43 ] | 47 ] |
44 | 48 |
45 deps = [ | 49 deps = [ |
46 "//base", | 50 "//base", |
47 "//base:i18n", | 51 "//base:i18n", |
48 "//build/config/sanitizers:deps", | 52 "//build/config/sanitizers:deps", |
49 "//mojo/edk/system", | 53 "//mojo/edk/system", |
50 "//skia", | 54 "//skia", |
51 "//sky/engine", | 55 "//sky/engine", |
52 "//ui/gfx/geometry", | 56 "//ui/gfx/geometry", |
(...skipping 28 matching lines...) Expand all Loading... |
81 | 85 |
82 asset_location = "apk/res" | 86 asset_location = "apk/res" |
83 | 87 |
84 deps = [ | 88 deps = [ |
85 ":sky_shell", | 89 ":sky_shell", |
86 ":java", | 90 ":java", |
87 ":resources", | 91 ":resources", |
88 "//base:base_java", | 92 "//base:base_java", |
89 ] | 93 ] |
90 } | 94 } |
OLD | NEW |