| 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 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 857 sources = [ | 863 sources = [ |
| 858 "web/ConsoleMessageStructTraits.cpp", | 864 "web/ConsoleMessageStructTraits.cpp", |
| 859 "web/ConsoleMessageStructTraits.h", | 865 "web/ConsoleMessageStructTraits.h", |
| 860 ] | 866 ] |
| 861 deps = [ | 867 deps = [ |
| 862 ":blink_headers", | 868 ":blink_headers", |
| 863 ":mojo_bindings_shared__generator", | 869 ":mojo_bindings_shared__generator", |
| 864 "//mojo/public/cpp/bindings:struct_traits", | 870 "//mojo/public/cpp/bindings:struct_traits", |
| 865 ] | 871 ] |
| 866 } | 872 } |
| OLD | NEW |