Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(145)

Side by Side Diff: sky/shell/BUILD.gn

Issue 873923003: sky/shell should link with sky/engine (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: moar deps Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sky/engine/public/web/WebViewClient.h ('k') | sky/shell/shell.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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",
47 "//base:i18n",
45 "//build/config/sanitizers:deps", 48 "//build/config/sanitizers:deps",
49 "//mojo/edk/system",
46 "//skia", 50 "//skia",
51 "//sky/engine",
47 "//ui/gfx/geometry", 52 "//ui/gfx/geometry",
48 "//ui/gl", 53 "//ui/gl",
49 ":jni_headers", 54 ":jni_headers",
50 ] 55 ]
51 } 56 }
52 57
53 android_library("java") { 58 android_library("java") {
54 java_files = [ 59 java_files = [
55 "apk/src/org/domokit/sky/shell/SkyMain.java", 60 "apk/src/org/domokit/sky/shell/SkyMain.java",
56 "apk/src/org/domokit/sky/shell/SkyShellActivity.java", 61 "apk/src/org/domokit/sky/shell/SkyShellActivity.java",
(...skipping 19 matching lines...) Expand all
76 81
77 asset_location = "apk/res" 82 asset_location = "apk/res"
78 83
79 deps = [ 84 deps = [
80 ":sky_shell", 85 ":sky_shell",
81 ":java", 86 ":java",
82 ":resources", 87 ":resources",
83 "//base:base_java", 88 "//base:base_java",
84 ] 89 ]
85 } 90 }
OLDNEW
« no previous file with comments | « sky/engine/public/web/WebViewClient.h ('k') | sky/shell/shell.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698