| OLD | NEW |
| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 sources = [ | 76 sources = [ |
| 77 "./platform/WebDisplayMode.h", | 77 "./platform/WebDisplayMode.h", |
| 78 "./platform/WebFocusType.h", | 78 "./platform/WebFocusType.h", |
| 79 "./platform/WebInputEvent.h", | 79 "./platform/WebInputEvent.h", |
| 80 "./platform/WebTextInputMode.h", | 80 "./platform/WebTextInputMode.h", |
| 81 "./platform/WebTextInputType.h", | 81 "./platform/WebTextInputType.h", |
| 82 "./platform/modules/remoteplayback/WebRemotePlaybackAvailability.h", | 82 "./platform/modules/remoteplayback/WebRemotePlaybackAvailability.h", |
| 83 ] | 83 ] |
| 84 } | 84 } |
| 85 | 85 |
| 86 java_cpp_enum("blink_cursor_type_java_enums_srcjar") { |
| 87 sources = [ |
| 88 "./platform/WebCursorInfo.h", |
| 89 ] |
| 90 } |
| 91 |
| 86 android_library("blink_headers_java") { | 92 android_library("blink_headers_java") { |
| 87 deps = [ | 93 deps = [ |
| 88 "//third_party/android_tools:android_support_annotations_java", | 94 "//third_party/android_tools:android_support_annotations_java", |
| 89 ] | 95 ] |
| 90 srcjar_deps = [ ":blink_headers_java_enums_srcjar" ] | 96 srcjar_deps = [ ":blink_headers_java_enums_srcjar" ] |
| 91 } | 97 } |
| 92 } | 98 } |
| 93 | 99 |
| 94 source_set("test_headers") { | 100 source_set("test_headers") { |
| 95 testonly = true | 101 testonly = true |
| (...skipping 751 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 847 sources = [ | 853 sources = [ |
| 848 "web/ConsoleMessageStructTraits.cpp", | 854 "web/ConsoleMessageStructTraits.cpp", |
| 849 "web/ConsoleMessageStructTraits.h", | 855 "web/ConsoleMessageStructTraits.h", |
| 850 ] | 856 ] |
| 851 deps = [ | 857 deps = [ |
| 852 ":blink_headers", | 858 ":blink_headers", |
| 853 ":mojo_bindings_shared__generator", | 859 ":mojo_bindings_shared__generator", |
| 854 "//mojo/public/cpp/bindings:struct_traits", | 860 "//mojo/public/cpp/bindings:struct_traits", |
| 855 ] | 861 ] |
| 856 } | 862 } |
| OLD | NEW |