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

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

Issue 880443003: Plumb resize notifications around sky/shell (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: git cl format 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 | « no previous file | sky/shell/gpu/rasterizer.h » ('j') | sky/shell/gpu/rasterizer.h » ('J')
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", 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
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 }
OLDNEW
« no previous file with comments | « no previous file | sky/shell/gpu/rasterizer.h » ('j') | sky/shell/gpu/rasterizer.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698