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

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

Issue 2416403002: Reland of Android: support multiple displays on C++ side (Closed)
Patch Set: JNI generated and registered in ui/android; ensure primary DisplayAndroid by going to app context 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") {
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 "//ui/display", 55 "//ui/display",
56 "//ui/gfx", 56 "//ui/gfx",
57 "//ui/gfx/geometry", 57 "//ui/gfx/geometry",
58 ] 58 ]
59 } 59 }
60 60
61 generate_jni("ui_android_jni_headers") { 61 generate_jni("ui_android_jni_headers") {
62 sources = [ 62 sources = [
63 "java/src/org/chromium/ui/base/ViewAndroidDelegate.java", 63 "java/src/org/chromium/ui/base/ViewAndroidDelegate.java",
64 "java/src/org/chromium/ui/base/WindowAndroid.java", 64 "java/src/org/chromium/ui/base/WindowAndroid.java",
65 "java/src/org/chromium/ui/display/DisplayAndroidManager.java",
65 "java/src/org/chromium/ui/resources/ResourceManager.java", 66 "java/src/org/chromium/ui/resources/ResourceManager.java",
66 ] 67 ]
67 jni_package = "ui_android" 68 jni_package = "ui_android"
68 } 69 }
69 70
70 java_cpp_enum("java_enums_srcjar") { 71 java_cpp_enum("java_enums_srcjar") {
71 sources = [ 72 sources = [
72 "../base/ime/text_input_type.h", 73 "../base/ime/text_input_type.h",
73 "../base/page_transition_types.h", 74 "../base/page_transition_types.h",
74 "../base/touch/touch_device.h", 75 "../base/touch/touch_device.h",
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 "//cc", 255 "//cc",
255 "//cc:test_support", 256 "//cc:test_support",
256 "//skia", 257 "//skia",
257 "//testing/gmock", 258 "//testing/gmock",
258 "//testing/gtest", 259 "//testing/gtest",
259 "//ui/base", 260 "//ui/base",
260 "//ui/gfx", 261 "//ui/gfx",
261 "//ui/resources:ui_test_pak", 262 "//ui/resources:ui_test_pak",
262 ] 263 ]
263 } 264 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698