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

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

Issue 2479123003: WIP Add getCoalescedEvents API using vector of WebInputEvents (Closed)
Patch Set: Creating CoalescedWebInputEvent 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 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 "//third_party/android_tools:android_support_annotations_java", 93 "//third_party/android_tools:android_support_annotations_java",
94 ] 94 ]
95 srcjar_deps = [ ":blink_headers_java_enums_srcjar" ] 95 srcjar_deps = [ ":blink_headers_java_enums_srcjar" ]
96 } 96 }
97 } 97 }
98 98
99 # Depend on this target to use public blink API headers for things like enums 99 # Depend on this target to use public blink API headers for things like enums
100 # and public structures without actually linking against any Blink libraries. 100 # and public structures without actually linking against any Blink libraries.
101 source_set("blink_headers") { 101 source_set("blink_headers") {
102 sources = [ 102 sources = [
103 "platform/CoalescedWebInputEvent.h",
103 "platform/FilePathConversion.h", 104 "platform/FilePathConversion.h",
104 "platform/InterfaceProvider.h", 105 "platform/InterfaceProvider.h",
105 "platform/Platform.h", 106 "platform/Platform.h",
106 "platform/URLConversion.h", 107 "platform/URLConversion.h",
107 "platform/UserMetricsAction.h", 108 "platform/UserMetricsAction.h",
108 "platform/WebAddressSpace.h", 109 "platform/WebAddressSpace.h",
109 "platform/WebApiKeyValidator.h", 110 "platform/WebApiKeyValidator.h",
110 "platform/WebApplicationCacheHost.h", 111 "platform/WebApplicationCacheHost.h",
111 "platform/WebApplicationCacheHostClient.h", 112 "platform/WebApplicationCacheHostClient.h",
112 "platform/WebAudioBus.h", 113 "platform/WebAudioBus.h",
(...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after
762 # relegated to a separate target to avoid duplication between the variants. 763 # relegated to a separate target to avoid duplication between the variants.
763 source_set("shared_typemap_traits") { 764 source_set("shared_typemap_traits") {
764 visibility = [ ":*" ] 765 visibility = [ ":*" ]
765 sources = [ 766 sources = [
766 "web/WindowFeaturesStructTraits.cpp", 767 "web/WindowFeaturesStructTraits.cpp",
767 ] 768 ]
768 deps = [ 769 deps = [
769 ":new_wrapper_types_mojo_bindings_shared__generator", 770 ":new_wrapper_types_mojo_bindings_shared__generator",
770 ] 771 ]
771 } 772 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698