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

Side by Side Diff: third_party/WebKit/public/BUILD.gn

Issue 2878403002: Support setting mouse cursor icon in Android N. (Closed)
Patch Set: Support setting mouse cursor icon in Android N Created 3 years, 4 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//mojo/public/tools/bindings/mojom.gni") 6 import("//mojo/public/tools/bindings/mojom.gni")
7 import("//third_party/WebKit/public/public_features.gni") 7 import("//third_party/WebKit/public/public_features.gni")
8 import("//third_party/WebKit/Source/config.gni") 8 import("//third_party/WebKit/Source/config.gni")
9 import("//third_party/WebKit/Source/core/core.gni") 9 import("//third_party/WebKit/Source/core/core.gni")
10 import("//tools/grit/grit_rule.gni") 10 import("//tools/grit/grit_rule.gni")
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 sources = [ 75 sources = [
76 "./platform/WebDisplayMode.h", 76 "./platform/WebDisplayMode.h",
77 "./platform/WebFocusType.h", 77 "./platform/WebFocusType.h",
78 "./platform/WebInputEvent.h", 78 "./platform/WebInputEvent.h",
79 "./platform/WebTextInputMode.h", 79 "./platform/WebTextInputMode.h",
80 "./platform/WebTextInputType.h", 80 "./platform/WebTextInputType.h",
81 "./platform/modules/remoteplayback/WebRemotePlaybackAvailability.h", 81 "./platform/modules/remoteplayback/WebRemotePlaybackAvailability.h",
82 ] 82 ]
83 } 83 }
84 84
85 java_cpp_enum("blink_cursor_type_java_enums_srcjar") {
86 sources = [
87 "./platform/WebCursorInfo.h",
88 ]
89 }
90
85 android_library("blink_headers_java") { 91 android_library("blink_headers_java") {
86 deps = [ 92 deps = [
87 "//third_party/android_tools:android_support_annotations_java", 93 "//third_party/android_tools:android_support_annotations_java",
88 ] 94 ]
89 srcjar_deps = [ ":blink_headers_java_enums_srcjar" ] 95 srcjar_deps = [ ":blink_headers_java_enums_srcjar" ]
90 } 96 }
91 } 97 }
92 98
93 source_set("test_headers") { 99 source_set("test_headers") {
94 testonly = true 100 testonly = true
(...skipping 820 matching lines...) Expand 10 before | Expand all | Expand 10 after
915 sources = [ 921 sources = [
916 "web/ConsoleMessageStructTraits.cpp", 922 "web/ConsoleMessageStructTraits.cpp",
917 "web/ConsoleMessageStructTraits.h", 923 "web/ConsoleMessageStructTraits.h",
918 ] 924 ]
919 deps = [ 925 deps = [
920 ":blink_headers", 926 ":blink_headers",
921 ":mojo_bindings_shared__generator", 927 ":mojo_bindings_shared__generator",
922 "//mojo/public/cpp/bindings:struct_traits", 928 "//mojo/public/cpp/bindings:struct_traits",
923 ] 929 ]
924 } 930 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698