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

Side by Side Diff: third_party/WebKit/Source/web/BUILD.gn

Issue 2886943003: [Offline Pages] Adding missing image/CSS detection in FrameSerializer. (Closed)
Patch Set: comments from dcheng@. Created 3 years, 6 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 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("//testing/test.gni") 6 import("//testing/test.gni")
7 import("//third_party/WebKit/Source/bindings/bindings.gni") 7 import("//third_party/WebKit/Source/bindings/bindings.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("//third_party/WebKit/Source/modules/modules.gni") 10 import("//third_party/WebKit/Source/modules/modules.gni")
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 "WebLabelElement.cpp", 154 "WebLabelElement.cpp",
155 "WebLanguageDetectionDetails.cpp", 155 "WebLanguageDetectionDetails.cpp",
156 "WebLeakDetector.cpp", 156 "WebLeakDetector.cpp",
157 "WebLocalFrameImpl.cpp", 157 "WebLocalFrameImpl.cpp",
158 "WebLocalFrameImpl.h", 158 "WebLocalFrameImpl.h",
159 "WebMediaDevicesRequest.cpp", 159 "WebMediaDevicesRequest.cpp",
160 "WebMetaElement.cpp", 160 "WebMetaElement.cpp",
161 "WebNode.cpp", 161 "WebNode.cpp",
162 "WebOptionElement.cpp", 162 "WebOptionElement.cpp",
163 "WebPageImportanceSignals.cpp", 163 "WebPageImportanceSignals.cpp",
164 "WebPageMissingCSSDetector.cpp",
165 "WebPageMissingCSSDetector.h",
166 "WebPageMissingImageDetector.cpp",
167 "WebPageMissingImageDetector.h",
164 "WebPagePopupImpl.cpp", 168 "WebPagePopupImpl.cpp",
165 "WebPagePopupImpl.h", 169 "WebPagePopupImpl.h",
170 "WebPageProblemDetector.cpp",
171 "WebPageProblemDetector.h",
166 "WebPepperSocket.cpp", 172 "WebPepperSocket.cpp",
167 "WebPepperSocketChannelClientProxy.h", 173 "WebPepperSocketChannelClientProxy.h",
168 "WebPepperSocketImpl.cpp", 174 "WebPepperSocketImpl.cpp",
169 "WebPepperSocketImpl.h", 175 "WebPepperSocketImpl.h",
170 "WebPluginContainerImpl.cpp", 176 "WebPluginContainerImpl.cpp",
171 "WebPluginContainerImpl.h", 177 "WebPluginContainerImpl.h",
172 "WebPluginDocument.cpp", 178 "WebPluginDocument.cpp",
173 "WebPluginScriptForbiddenScope.cpp", 179 "WebPluginScriptForbiddenScope.cpp",
174 "WebRemoteFrameImpl.cpp", 180 "WebRemoteFrameImpl.cpp",
175 "WebRemoteFrameImpl.h", 181 "WebRemoteFrameImpl.h",
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 261
256 sources = [ 262 sources = [
257 "ExternalPopupMenuTest.cpp", 263 "ExternalPopupMenuTest.cpp",
258 "LinkHighlightImplTest.cpp", 264 "LinkHighlightImplTest.cpp",
259 "PageOverlayTest.cpp", 265 "PageOverlayTest.cpp",
260 "WebAssociatedURLLoaderImplTest.cpp", 266 "WebAssociatedURLLoaderImplTest.cpp",
261 "WebDragDataTest.cpp", 267 "WebDragDataTest.cpp",
262 "WebElementTest.cpp", 268 "WebElementTest.cpp",
263 "WebEmbeddedWorkerImplTest.cpp", 269 "WebEmbeddedWorkerImplTest.cpp",
264 "WebNodeTest.cpp", 270 "WebNodeTest.cpp",
271 "WebPageProblemDetectorTest.cpp",
265 272
266 # FIXME: Move the tests from web/tests/ to appropriate places. 273 # FIXME: Move the tests from web/tests/ to appropriate places.
267 # crbug.com/353585 274 # crbug.com/353585
268 "tests/AccessibilityObjectModelTest.cpp", 275 "tests/AccessibilityObjectModelTest.cpp",
269 "tests/ActivityLoggerTest.cpp", 276 "tests/ActivityLoggerTest.cpp",
270 "tests/AnimationSimTest.cpp", 277 "tests/AnimationSimTest.cpp",
271 "tests/BrowserControlsTest.cpp", 278 "tests/BrowserControlsTest.cpp",
272 "tests/ChromeClientImplTest.cpp", 279 "tests/ChromeClientImplTest.cpp",
273 "tests/CompositorWorkerTest.cpp", 280 "tests/CompositorWorkerTest.cpp",
274 "tests/DeferredLoadingTest.cpp", 281 "tests/DeferredLoadingTest.cpp",
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 395
389 if (is_android) { 396 if (is_android) {
390 deps += [ 397 deps += [
391 "//base:base_java", 398 "//base:base_java",
392 "//content/public/android:content_java", 399 "//content/public/android:content_java",
393 "//content/shell/android:content_shell_assets", 400 "//content/shell/android:content_shell_assets",
394 "//net/android:net_java", 401 "//net/android:net_java",
395 ] 402 ]
396 } 403 }
397 } 404 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698