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

Side by Side Diff: third_party/WebKit/Source/core/events/BUILD.gn

Issue 2331213002: Add `disposition` to SecurityPolicyViolationEvent (Closed)
Patch Set: Fix a typo in rebased test expectation Created 4 years, 2 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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("//third_party/WebKit/Source/core/core.gni") 5 import("//third_party/WebKit/Source/core/core.gni")
6 6
7 blink_core_sources("events") { 7 blink_core_sources("events") {
8 sources = [ 8 sources = [
9 "AddEventListenerOptionsResolved.cpp", 9 "AddEventListenerOptionsResolved.cpp",
10 "AddEventListenerOptionsResolved.h", 10 "AddEventListenerOptionsResolved.h",
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 "ProgressEvent.cpp", 76 "ProgressEvent.cpp",
77 "ProgressEvent.h", 77 "ProgressEvent.h",
78 "PromiseRejectionEvent.cpp", 78 "PromiseRejectionEvent.cpp",
79 "PromiseRejectionEvent.h", 79 "PromiseRejectionEvent.h",
80 "RelatedEvent.cpp", 80 "RelatedEvent.cpp",
81 "RelatedEvent.h", 81 "RelatedEvent.h",
82 "ResourceProgressEvent.cpp", 82 "ResourceProgressEvent.cpp",
83 "ResourceProgressEvent.h", 83 "ResourceProgressEvent.h",
84 "ScopedEventQueue.cpp", 84 "ScopedEventQueue.cpp",
85 "ScopedEventQueue.h", 85 "ScopedEventQueue.h",
86 "SecurityPolicyViolationEvent.cpp",
86 "SecurityPolicyViolationEvent.h", 87 "SecurityPolicyViolationEvent.h",
87 "TextEvent.cpp", 88 "TextEvent.cpp",
88 "TextEvent.h", 89 "TextEvent.h",
89 "TouchEvent.cpp", 90 "TouchEvent.cpp",
90 "TouchEvent.h", 91 "TouchEvent.h",
91 "TouchEventContext.cpp", 92 "TouchEventContext.cpp",
92 "TouchEventContext.h", 93 "TouchEventContext.h",
93 "TransitionEvent.cpp", 94 "TransitionEvent.cpp",
94 "TransitionEvent.h", 95 "TransitionEvent.h",
95 "TreeScopeEventContext.cpp", 96 "TreeScopeEventContext.cpp",
96 "TreeScopeEventContext.h", 97 "TreeScopeEventContext.h",
97 "UIEvent.cpp", 98 "UIEvent.cpp",
98 "UIEventWithKeyState.cpp", 99 "UIEventWithKeyState.cpp",
99 "VisualViewportResizeEvent.cpp", 100 "VisualViewportResizeEvent.cpp",
100 "VisualViewportResizeEvent.h", 101 "VisualViewportResizeEvent.h",
101 "VisualViewportScrollEvent.cpp", 102 "VisualViewportScrollEvent.cpp",
102 "VisualViewportScrollEvent.h", 103 "VisualViewportScrollEvent.h",
103 "WheelEvent.cpp", 104 "WheelEvent.cpp",
104 "WheelEvent.h", 105 "WheelEvent.h",
105 "WindowEventContext.cpp", 106 "WindowEventContext.cpp",
106 "WindowEventContext.h", 107 "WindowEventContext.h",
107 ] 108 ]
108 109
109 configs += [ 110 configs += [
110 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 111 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
111 "//build/config/compiler:no_size_t_to_int_warning", 112 "//build/config/compiler:no_size_t_to_int_warning",
112 ] 113 ]
113 } 114 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698