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", |
| 33 "ui/engine.h", |
| 34 "ui/platform_impl.cc", |
| 35 "ui/platform_impl.h", |
32 "library_loader.cc", | 36 "library_loader.cc", |
33 "shell.cc", | 37 "shell.cc", |
34 "shell.h", | 38 "shell.h", |
35 "sky_main.cc", | 39 "sky_main.cc", |
36 "sky_main.h", | 40 "sky_main.h", |
37 "sky_view.cc", | 41 "sky_view.cc", |
38 "sky_view.h", | 42 "sky_view.h", |
39 ] | 43 ] |
40 | 44 |
41 configs += [ "//third_party/khronos:khronos_headers" ] | |
42 | |
43 deps = [ | 45 deps = [ |
44 "//base", | 46 "//base", |
45 "//build/config/sanitizers:deps", | 47 "//build/config/sanitizers:deps", |
| 48 "//mojo/edk/system", |
46 "//skia", | 49 "//skia", |
| 50 "//sky/engine", |
47 "//ui/gfx/geometry", | 51 "//ui/gfx/geometry", |
48 "//ui/gl", | 52 "//ui/gl", |
49 ":jni_headers", | 53 ":jni_headers", |
50 ] | 54 ] |
51 } | 55 } |
52 | 56 |
53 android_library("java") { | 57 android_library("java") { |
54 java_files = [ | 58 java_files = [ |
55 "apk/src/org/domokit/sky/shell/SkyMain.java", | 59 "apk/src/org/domokit/sky/shell/SkyMain.java", |
56 "apk/src/org/domokit/sky/shell/SkyShellActivity.java", | 60 "apk/src/org/domokit/sky/shell/SkyShellActivity.java", |
(...skipping 19 matching lines...) Expand all Loading... |
76 | 80 |
77 asset_location = "apk/res" | 81 asset_location = "apk/res" |
78 | 82 |
79 deps = [ | 83 deps = [ |
80 ":sky_shell", | 84 ":sky_shell", |
81 ":java", | 85 ":java", |
82 ":resources", | 86 ":resources", |
83 "//base:base_java", | 87 "//base:base_java", |
84 ] | 88 ] |
85 } | 89 } |
OLD | NEW |