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

Side by Side Diff: sky/engine/web/BUILD.gn

Issue 693603005: Remove lots of dead web/ classes. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 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
« no previous file with comments | « sky/engine/web/AssertMatchingEnums.cpp ('k') | sky/engine/web/ChromeClientImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//sky/engine/config.gni") 6 import("//sky/engine/config.gni")
7 7
8 visibility = ["//sky/*"] 8 visibility = ["//sky/*"]
9 9
10 platform_web_unittest_files = [ 10 platform_web_unittest_files = [
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 "PageWidgetDelegate.cpp", 51 "PageWidgetDelegate.cpp",
52 "PageWidgetDelegate.h", 52 "PageWidgetDelegate.h",
53 "SpellCheckerClientImpl.cpp", 53 "SpellCheckerClientImpl.cpp",
54 "SpellCheckerClientImpl.h", 54 "SpellCheckerClientImpl.h",
55 "ViewportAnchor.cpp", 55 "ViewportAnchor.cpp",
56 "ViewportAnchor.h", 56 "ViewportAnchor.h",
57 "WebArrayBufferConverter.cpp", 57 "WebArrayBufferConverter.cpp",
58 "WebArrayBufferView.cpp", 58 "WebArrayBufferView.cpp",
59 "WebCache.cpp", 59 "WebCache.cpp",
60 "WebCachedURLRequest.cpp", 60 "WebCachedURLRequest.cpp",
61 "WebColorSuggestion.cpp",
62 "WebCustomElement.cpp", 61 "WebCustomElement.cpp",
63 "WebDOMCustomEvent.cpp",
64 "WebDOMError.cpp",
65 "WebDOMEvent.cpp",
66 "WebDOMMouseEvent.cpp",
67 "WebDOMProgressEvent.cpp",
68 "WebDOMResourceProgressEvent.cpp",
69 "WebDatabase.cpp",
70 "WebDocument.cpp", 62 "WebDocument.cpp",
71 "WebDocumentType.cpp",
72 "WebElement.cpp", 63 "WebElement.cpp",
73 "WebEntities.cpp",
74 "WebEntities.h",
75 "WebFontDescription.cpp", 64 "WebFontDescription.cpp",
76 "WebFontImpl.cpp", 65 "WebFontImpl.cpp",
77 "WebFontImpl.h", 66 "WebFontImpl.h",
78 "WebFrame.cpp", 67 "WebFrame.cpp",
79 "WebGlyphCache.cpp", 68 "WebGlyphCache.cpp",
80 "WebHitTestResult.cpp", 69 "WebHitTestResult.cpp",
81 "WebImageCache.cpp", 70 "WebImageCache.cpp",
82 "WebImageDecoder.cpp", 71 "WebImageDecoder.cpp",
83 "WebInputEvent.cpp", 72 "WebInputEvent.cpp",
84 "WebInputEventConversion.cpp", 73 "WebInputEventConversion.cpp",
85 "WebInputEventConversion.h", 74 "WebInputEventConversion.h",
86 "Sky.cpp", 75 "Sky.cpp",
87 "WebLeakDetector.cpp", 76 "WebLeakDetector.cpp",
88 "WebLocalFrameImpl.cpp", 77 "WebLocalFrameImpl.cpp",
89 "WebLocalFrameImpl.h", 78 "WebLocalFrameImpl.h",
90 "WebNode.cpp", 79 "WebNode.cpp",
91 "WebPerformance.cpp",
92 "WebRange.cpp", 80 "WebRange.cpp",
93 "WebRuntimeFeatures.cpp", 81 "WebRuntimeFeatures.cpp",
94 "WebScopedMicrotaskSuppression.cpp",
95 "WebScopedUserGesture.cpp", 82 "WebScopedUserGesture.cpp",
96 "WebScopedWindowFocusAllowedIndicator.cpp",
97 "WebScriptBindings.cpp", 83 "WebScriptBindings.cpp",
98 "WebScriptController.cpp", 84 "WebScriptController.cpp",
99 "WebScrollbarThemePainter.cpp", 85 "WebScrollbarThemePainter.cpp",
100 "WebSecurityPolicy.cpp", 86 "WebSecurityPolicy.cpp",
101 "WebSerializedScriptValue.cpp",
102 "WebSettingsImpl.cpp", 87 "WebSettingsImpl.cpp",
103 "WebSettingsImpl.h", 88 "WebSettingsImpl.h",
104 "WebSurroundingText.cpp",
105 "WebTextCheckingCompletionImpl.cpp", 89 "WebTextCheckingCompletionImpl.cpp",
106 "WebTextCheckingCompletionImpl.h", 90 "WebTextCheckingCompletionImpl.h",
107 "WebTextCheckingResult.cpp", 91 "WebTextCheckingResult.cpp",
108 "WebTextInputInfo.cpp", 92 "WebTextInputInfo.cpp",
109 "WebTextRun.cpp", 93 "WebTextRun.cpp",
110 "WebUserGestureIndicator.cpp", 94 "WebUserGestureIndicator.cpp",
111 "WebUserGestureToken.cpp", 95 "WebUserGestureToken.cpp",
112 "WebViewImpl.cpp", 96 "WebViewImpl.cpp",
113 "WebViewImpl.h", 97 "WebViewImpl.h",
114 "linux/WebFontRendering.cpp", 98 "linux/WebFontRendering.cpp",
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 configs += [ "//sky/engine:config" ] 159 configs += [ "//sky/engine:config" ]
176 160
177 if (!is_component_build) { 161 if (!is_component_build) {
178 deps += [ "//sky/engine/core" ] 162 deps += [ "//sky/engine/core" ]
179 163
180 configs += [ "//sky/engine:inside_blink" ] 164 configs += [ "//sky/engine:inside_blink" ]
181 165
182 sources += platform_web_unittest_files 166 sources += platform_web_unittest_files
183 } 167 }
184 } 168 }
OLDNEW
« no previous file with comments | « sky/engine/web/AssertMatchingEnums.cpp ('k') | sky/engine/web/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698