mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This CL teaches SkyView the width, height, and device pixel ratio of the display. In the future, we'll want some sort of notification system for when these values change. R=eseidel@chromium.org Review URL: https://codereview.chromium.org/1139823010
121 lines
3.5 KiB
Plaintext
121 lines
3.5 KiB
Plaintext
# Copyright 2014 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import("//tools/grit/grit_rule.gni")
|
|
|
|
group("test_support") {
|
|
deps = [
|
|
"//sky/engine/web:test_support",
|
|
]
|
|
}
|
|
|
|
source_set("platform_headers") {
|
|
public = [
|
|
"platform/Platform.h",
|
|
"platform/ServiceProvider.h",
|
|
"platform/WebArrayBuffer.h",
|
|
"platform/WebBlendMode.h",
|
|
"platform/WebCString.h",
|
|
"platform/WebCallbacks.h",
|
|
"platform/WebCanvas.h",
|
|
"platform/WebClipboard.h",
|
|
"platform/WebColor.h",
|
|
"platform/WebCommon.h",
|
|
"platform/WebData.h",
|
|
"platform/WebDiscardableMemory.h",
|
|
"platform/WebExternalBitmap.h",
|
|
"platform/WebExternalTextureLayer.h",
|
|
"platform/WebExternalTextureLayerClient.h",
|
|
"platform/WebExternalTextureMailbox.h",
|
|
"platform/WebFallbackThemeEngine.h",
|
|
"platform/WebFloatPoint.h",
|
|
"platform/WebFloatPoint3D.h",
|
|
"platform/WebFloatRect.h",
|
|
"platform/WebFloatSize.h",
|
|
"platform/WebGestureDevice.h",
|
|
"platform/WebGraphicsContext3D.h",
|
|
"platform/WebGraphicsContext3DProvider.h",
|
|
"platform/WebHTTPBody.h",
|
|
"platform/WebHTTPHeaderVisitor.h",
|
|
"platform/WebHTTPLoadInfo.h",
|
|
"platform/WebImage.h",
|
|
"platform/WebImageLayer.h",
|
|
"platform/WebInputEvent.h",
|
|
"platform/WebLayer.h",
|
|
"platform/WebLayerScrollClient.h",
|
|
"platform/WebLayerTreeView.h",
|
|
"platform/WebLocalizedString.h",
|
|
"platform/WebNonCopyable.h",
|
|
"platform/WebPoint.h",
|
|
"platform/WebPrivateOwnPtr.h",
|
|
"platform/WebPrivatePtr.h",
|
|
"platform/WebRect.h",
|
|
"platform/WebReferrerPolicy.h",
|
|
"platform/WebRenderingStats.h",
|
|
"platform/WebScreenInfo.h",
|
|
"platform/WebScreenOrientationType.h",
|
|
"platform/WebSelectionBound.h",
|
|
"platform/WebSize.h",
|
|
"platform/WebString.h",
|
|
"platform/WebThread.h",
|
|
"platform/WebURL.h",
|
|
"platform/WebURLError.h",
|
|
"platform/WebURLLoadTiming.h",
|
|
"platform/WebURLLoader.h",
|
|
"platform/WebURLLoaderClient.h",
|
|
"platform/WebURLRequest.h",
|
|
"platform/WebURLResponse.h",
|
|
"platform/WebUnitTestSupport.h",
|
|
"platform/WebVector.h",
|
|
"platform/sky_display_metrics.h",
|
|
"platform/android/WebSandboxSupport.h",
|
|
"platform/linux/WebFallbackFont.h",
|
|
"platform/linux/WebFontInfo.h",
|
|
"platform/linux/WebFontRenderStyle.h",
|
|
"platform/linux/WebSandboxSupport.h",
|
|
]
|
|
}
|
|
|
|
source_set("web_headers") {
|
|
public = [
|
|
"web/Sky.h",
|
|
"web/WebBeginFrameArgs.h",
|
|
"web/WebCache.h",
|
|
"web/WebCachedURLRequest.h",
|
|
"web/WebCompositionUnderline.h",
|
|
"web/WebDocument.h",
|
|
"web/WebElement.h",
|
|
"web/WebExceptionCode.h",
|
|
"web/WebFont.h",
|
|
"web/WebFontDescription.h",
|
|
"web/WebFrame.h",
|
|
"web/WebFrameClient.h",
|
|
"web/WebLocalFrame.h",
|
|
"web/WebNavigationPolicy.h",
|
|
"web/WebNavigationType.h",
|
|
"web/WebNavigatorContentUtilsClient.h",
|
|
"web/WebNode.h",
|
|
"web/WebPageVisibilityState.h",
|
|
"web/WebRange.h",
|
|
"web/WebRuntimeFeatures.h",
|
|
"web/WebScriptSource.h",
|
|
"web/WebSettings.h",
|
|
"web/WebSpellCheckClient.h",
|
|
"web/WebTextAffinity.h",
|
|
"web/WebTextCheckingCompletion.h",
|
|
"web/WebTextCheckingResult.h",
|
|
"web/WebTextCheckingType.h",
|
|
"web/WebTextDecorationType.h",
|
|
"web/WebTextDirection.h",
|
|
"web/WebTextInputInfo.h",
|
|
"web/WebTextInputType.h",
|
|
"web/WebTextRun.h",
|
|
"web/WebURLLoaderOptions.h",
|
|
"web/WebView.h",
|
|
"web/WebViewClient.h",
|
|
"web/WebWidget.h",
|
|
"web/linux/WebFontRendering.h",
|
|
]
|
|
}
|