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

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

Issue 1027903002: Enable tracing in SkyShell (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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/library_loader.cc » ('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 generate_jni("jni_headers") { 10 generate_jni("jni_headers") {
11 sources = [ 11 sources = [
12 "org/domokit/sky/shell/JavaServiceProvider.java", 12 "org/domokit/sky/shell/JavaServiceProvider.java",
13 "org/domokit/sky/shell/PlatformView.java",
13 "org/domokit/sky/shell/SkyMain.java", 14 "org/domokit/sky/shell/SkyMain.java",
14 "org/domokit/sky/shell/PlatformView.java", 15 "org/domokit/sky/shell/TracingController.java",
15 ] 16 ]
16 jni_package = "sky/shell" 17 jni_package = "sky/shell"
17 } 18 }
18 19
19 shared_library("sky_shell") { 20 shared_library("sky_shell") {
20 sources = [ 21 sources = [
21 "gpu/ganesh_context.cc", 22 "gpu/ganesh_context.cc",
22 "gpu/ganesh_context.h", 23 "gpu/ganesh_context.h",
23 "gpu/ganesh_surface.cc", 24 "gpu/ganesh_surface.cc",
24 "gpu/ganesh_surface.h", 25 "gpu/ganesh_surface.h",
25 "gpu/rasterizer.cc", 26 "gpu/rasterizer.cc",
26 "gpu/rasterizer.h", 27 "gpu/rasterizer.h",
27 "gpu_delegate.cc", 28 "gpu_delegate.cc",
28 "gpu_delegate.h", 29 "gpu_delegate.h",
29 "java_service_provider.cc", 30 "java_service_provider.cc",
30 "java_service_provider.h", 31 "java_service_provider.h",
31 "library_loader.cc", 32 "library_loader.cc",
32 "platform_view.cc", 33 "platform_view.cc",
33 "platform_view.h", 34 "platform_view.h",
34 "shell.cc", 35 "shell.cc",
35 "shell.h", 36 "shell.h",
36 "sky_main.cc", 37 "sky_main.cc",
37 "sky_main.h", 38 "sky_main.h",
39 "tracing_controller.cc",
40 "tracing_controller.h",
38 "ui/animator.cc", 41 "ui/animator.cc",
39 "ui/animator.h", 42 "ui/animator.h",
40 "ui/engine.cc", 43 "ui/engine.cc",
41 "ui/engine.h", 44 "ui/engine.h",
42 "ui/input_event_converter.cc", 45 "ui/input_event_converter.cc",
43 "ui/input_event_converter.h", 46 "ui/input_event_converter.h",
44 "ui/internals.cc", 47 "ui/internals.cc",
45 "ui/internals.h", 48 "ui/internals.h",
46 "ui_delegate.cc", 49 "ui_delegate.cc",
47 "ui_delegate.h", 50 "ui_delegate.h",
(...skipping 25 matching lines...) Expand all
73 android_library("java") { 76 android_library("java") {
74 java_files = [ 77 java_files = [
75 "org/domokit/sky/shell/GestureProvider.java", 78 "org/domokit/sky/shell/GestureProvider.java",
76 "org/domokit/sky/shell/JavaServiceProvider.java", 79 "org/domokit/sky/shell/JavaServiceProvider.java",
77 "org/domokit/sky/shell/PlatformView.java", 80 "org/domokit/sky/shell/PlatformView.java",
78 "org/domokit/sky/shell/ServiceFactory.java", 81 "org/domokit/sky/shell/ServiceFactory.java",
79 "org/domokit/sky/shell/ServiceRegistry.java", 82 "org/domokit/sky/shell/ServiceRegistry.java",
80 "org/domokit/sky/shell/SkyActivity.java", 83 "org/domokit/sky/shell/SkyActivity.java",
81 "org/domokit/sky/shell/SkyApplication.java", 84 "org/domokit/sky/shell/SkyApplication.java",
82 "org/domokit/sky/shell/SkyMain.java", 85 "org/domokit/sky/shell/SkyMain.java",
86 "org/domokit/sky/shell/TracingController.java",
83 ] 87 ]
84 88
85 deps = [ 89 deps = [
86 "//base:base_java", 90 "//base:base_java",
87 "//mojo/android:system_java", 91 "//mojo/android:system_java",
88 "//mojo/public/interfaces/application:application_java", 92 "//mojo/public/interfaces/application:application_java",
89 "//mojo/public/java:bindings", 93 "//mojo/public/java:bindings",
90 "//mojo/public/java:system", 94 "//mojo/public/java:system",
91 "//mojo/services/network/public/interfaces:interfaces_java", 95 "//mojo/services/network/public/interfaces:interfaces_java",
92 "//sky/services/keyboard", 96 "//sky/services/keyboard",
93 "//sky/services/oknet", 97 "//sky/services/oknet",
94 "//sky/services/viewport:viewport_java", 98 "//sky/services/viewport:viewport_java",
95 ] 99 ]
96 } 100 }
97 101
98 copy_ex("assets") { 102 copy_ex("assets") {
99 clear_dir = true 103 clear_dir = true
100 dest = "$root_build_dir/sky_shell/assets" 104 dest = "$root_build_dir/sky_shell/assets"
101 sources = [ 105 sources = [
102 "$root_build_dir/icudtl.dat", 106 "$root_build_dir/icudtl.dat",
103 ] 107 ]
104 deps = [ 108 deps = [
105 "//third_party/icu", 109 "//third_party/icu",
106 ] 110 ]
107 } 111 }
OLDNEW
« no previous file with comments | « no previous file | sky/shell/library_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698