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

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

Issue 2878403002: Support setting mouse cursor icon in Android N. (Closed)
Patch Set: Support setting pointer icon in Android N Created 3 years, 7 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
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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 "java/src/org/chromium/ui/base/WindowAndroid.java", 93 "java/src/org/chromium/ui/base/WindowAndroid.java",
94 "java/src/org/chromium/ui/display/DisplayAndroidManager.java", 94 "java/src/org/chromium/ui/display/DisplayAndroidManager.java",
95 "java/src/org/chromium/ui/resources/ResourceFactory.java", 95 "java/src/org/chromium/ui/resources/ResourceFactory.java",
96 "java/src/org/chromium/ui/resources/ResourceManager.java", 96 "java/src/org/chromium/ui/resources/ResourceManager.java",
97 ] 97 ]
98 jni_package = "ui_android" 98 jni_package = "ui_android"
99 } 99 }
100 100
101 java_cpp_enum("java_enums_srcjar") { 101 java_cpp_enum("java_enums_srcjar") {
102 sources = [ 102 sources = [
103 "../../third_party/WebKit/public/platform/WebCursorInfo.h",
Jinsuk Kim 2017/05/18 02:19:51 Have the enum generated in blink where the header
103 "../base/ime/text_input_type.h", 104 "../base/ime/text_input_type.h",
104 "../base/page_transition_types.h", 105 "../base/page_transition_types.h",
105 "../base/touch/touch_device.h", 106 "../base/touch/touch_device.h",
106 "../gfx/android/java_bitmap.h", 107 "../gfx/android/java_bitmap.h",
107 "resources/resource_manager.h", 108 "resources/resource_manager.h",
108 "resources/system_ui_resource_type.h", 109 "resources/system_ui_resource_type.h",
109 ] 110 ]
110 } 111 }
111 112
112 java_strings_grd("ui_strings_grd") { 113 java_strings_grd("ui_strings_grd") {
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 "//cc:test_support", 263 "//cc:test_support",
263 "//skia", 264 "//skia",
264 "//testing/gmock", 265 "//testing/gmock",
265 "//testing/gtest", 266 "//testing/gtest",
266 "//ui/base", 267 "//ui/base",
267 "//ui/events", 268 "//ui/events",
268 "//ui/gfx", 269 "//ui/gfx",
269 "//ui/resources:ui_test_pak", 270 "//ui/resources:ui_test_pak",
270 ] 271 ]
271 } 272 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698