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

Side by Side Diff: ui/android/BUILD.gn

Issue 2416403002: Reland of Android: support multiple displays on C++ side (Closed)
Patch Set: Moved SetScreenInstance call to PreMainMessageLoopRun Created 4 years, 1 month 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
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 import("//build/config/android/rules.gni") 5 import("//build/config/android/rules.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 assert(is_android) 8 assert(is_android)
9 9
10 component("android") { 10 component("android") {
11 output_name = "ui_android" 11 output_name = "ui_android"
12 sources = [ 12 sources = [
13 "animation_utils.h", 13 "animation_utils.h",
14 "context_provider_factory.cc", 14 "context_provider_factory.cc",
15 "context_provider_factory.h", 15 "context_provider_factory.h",
16 "delegated_frame_host_android.cc", 16 "delegated_frame_host_android.cc",
17 "delegated_frame_host_android.h", 17 "delegated_frame_host_android.h",
18 "display_android_manager.cc",
19 "display_android_manager.h",
20 "dummy_screen_android.cc",
boliu 2016/11/12 00:34:13 if this is test only, then make a test-only target
Tima Vaisburd 2016/11/12 01:57:27 Done.
18 "edge_effect.cc", 21 "edge_effect.cc",
19 "edge_effect.h", 22 "edge_effect.h",
20 "edge_effect_base.cc", 23 "edge_effect_base.cc",
21 "edge_effect_base.h", 24 "edge_effect_base.h",
22 "edge_effect_l.cc", 25 "edge_effect_l.cc",
23 "edge_effect_l.h", 26 "edge_effect_l.h",
24 "overscroll_glow.cc", 27 "overscroll_glow.cc",
25 "overscroll_glow.h", 28 "overscroll_glow.h",
26 "overscroll_refresh.cc", 29 "overscroll_refresh.cc",
27 "overscroll_refresh.h", 30 "overscroll_refresh.h",
28 "resources/crushed_sprite_resource.cc", 31 "resources/crushed_sprite_resource.cc",
29 "resources/crushed_sprite_resource.h", 32 "resources/crushed_sprite_resource.h",
30 "resources/resource_manager.cc", 33 "resources/resource_manager.cc",
31 "resources/resource_manager.h", 34 "resources/resource_manager.h",
32 "resources/resource_manager_impl.cc", 35 "resources/resource_manager_impl.cc",
33 "resources/resource_manager_impl.h", 36 "resources/resource_manager_impl.h",
34 "resources/ui_resource_provider.h", 37 "resources/ui_resource_provider.h",
38 "screen_android.h",
35 "ui_android_export.h", 39 "ui_android_export.h",
36 "ui_android_jni_registrar.cc", 40 "ui_android_jni_registrar.cc",
37 "ui_android_jni_registrar.h", 41 "ui_android_jni_registrar.h",
38 "view_android.cc", 42 "view_android.cc",
39 "view_android.h", 43 "view_android.h",
40 "window_android.cc", 44 "window_android.cc",
41 "window_android.h", 45 "window_android.h",
42 "window_android_compositor.h", 46 "window_android_compositor.h",
43 "window_android_observer.h", 47 "window_android_observer.h",
44 ] 48 ]
(...skipping 10 matching lines...) Expand all
55 "//ui/display", 59 "//ui/display",
56 "//ui/gfx", 60 "//ui/gfx",
57 "//ui/gfx/geometry", 61 "//ui/gfx/geometry",
58 ] 62 ]
59 } 63 }
60 64
61 generate_jni("ui_android_jni_headers") { 65 generate_jni("ui_android_jni_headers") {
62 sources = [ 66 sources = [
63 "java/src/org/chromium/ui/base/ViewAndroidDelegate.java", 67 "java/src/org/chromium/ui/base/ViewAndroidDelegate.java",
64 "java/src/org/chromium/ui/base/WindowAndroid.java", 68 "java/src/org/chromium/ui/base/WindowAndroid.java",
69 "java/src/org/chromium/ui/display/DisplayAndroidManager.java",
65 "java/src/org/chromium/ui/resources/ResourceManager.java", 70 "java/src/org/chromium/ui/resources/ResourceManager.java",
66 ] 71 ]
67 jni_package = "ui_android" 72 jni_package = "ui_android"
68 } 73 }
69 74
70 java_cpp_enum("java_enums_srcjar") { 75 java_cpp_enum("java_enums_srcjar") {
71 sources = [ 76 sources = [
72 "../base/ime/text_input_type.h", 77 "../base/ime/text_input_type.h",
73 "../base/page_transition_types.h", 78 "../base/page_transition_types.h",
74 "../base/touch/touch_device.h", 79 "../base/touch/touch_device.h",
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 "//cc", 232 "//cc",
228 "//cc:test_support", 233 "//cc:test_support",
229 "//skia", 234 "//skia",
230 "//testing/gmock", 235 "//testing/gmock",
231 "//testing/gtest", 236 "//testing/gtest",
232 "//ui/base", 237 "//ui/base",
233 "//ui/gfx", 238 "//ui/gfx",
234 "//ui/resources:ui_test_pak", 239 "//ui/resources:ui_test_pak",
235 ] 240 ]
236 } 241 }
OLDNEW
« no previous file with comments | « content/test/BUILD.gn ('k') | ui/android/DEPS » ('j') | ui/android/display_android_manager.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698