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

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

Issue 2584643002: Revamp OffscreenCanvas commit flow (Closed)
Patch Set: rebase Created 4 years 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/libfuzzer/fuzzer_test.gni") 7 import("//testing/libfuzzer/fuzzer_test.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 import("//third_party/WebKit/public/public_features.gni") 9 import("//third_party/WebKit/public/public_features.gni")
10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
(...skipping 2034 matching lines...) Expand 10 before | Expand all | Expand 10 after
2045 2045
2046 # NOTE: These are legacy unit tests and tests that require a Platform 2046 # NOTE: These are legacy unit tests and tests that require a Platform
2047 # object. Do not add more unless the test requires a Platform object. 2047 # object. Do not add more unless the test requires a Platform object.
2048 # These tests are a part of the webkit_unit_tests binary. 2048 # These tests are a part of the webkit_unit_tests binary.
2049 source_set("unit_tests") { 2049 source_set("unit_tests") {
2050 testonly = true 2050 testonly = true
2051 visibility = [] 2051 visibility = []
2052 visibility = [ "//third_party/WebKit/Source/*" ] 2052 visibility = [ "//third_party/WebKit/Source/*" ]
2053 sources = [ 2053 sources = [
2054 "graphics/Canvas2DLayerBridgeTest.cpp", 2054 "graphics/Canvas2DLayerBridgeTest.cpp",
2055 "graphics/CanvasSurfaceLayerBridgeTest.cpp",
2056 "graphics/DeferredImageDecoderTest.cpp", 2055 "graphics/DeferredImageDecoderTest.cpp",
2057 "graphics/GraphicsLayerTest.cpp", 2056 "graphics/GraphicsLayerTest.cpp",
2058 "graphics/ImageDecodingStoreTest.cpp", 2057 "graphics/ImageDecodingStoreTest.cpp",
2059 "graphics/ImageFrameGeneratorTest.cpp", 2058 "graphics/ImageFrameGeneratorTest.cpp",
2060 "graphics/ImageLayerChromiumTest.cpp", 2059 "graphics/ImageLayerChromiumTest.cpp",
2061 "graphics/gpu/DrawingBufferSoftwareRenderingTest.cpp", 2060 "graphics/gpu/DrawingBufferSoftwareRenderingTest.cpp",
2062 "graphics/test/FakeGLES2Interface.h", 2061 "graphics/test/FakeGLES2Interface.h",
2063 "graphics/test/FakeWebGraphicsContext3DProvider.h", 2062 "graphics/test/FakeWebGraphicsContext3DProvider.h",
2064 "graphics/test/MockImageDecoder.h", 2063 "graphics/test/MockImageDecoder.h",
2065 ] 2064 ]
2066 2065
2067 configs += [ 2066 configs += [
2068 ":blink_platform_pch", 2067 ":blink_platform_pch",
2069 "//third_party/WebKit/Source:config", 2068 "//third_party/WebKit/Source:config",
2070 "//third_party/WebKit/Source:inside_blink", 2069 "//third_party/WebKit/Source:inside_blink",
2071 ] 2070 ]
2072 2071
2073 deps = [ 2072 deps = [
2074 ":test_support", 2073 ":test_support",
2075 "//cc/surfaces:surface_id", 2074 "//cc/surfaces:surface_id",
2076 "//testing/gmock", 2075 "//testing/gmock",
2077 "//testing/gtest", 2076 "//testing/gtest",
2078 ] 2077 ]
2079 } 2078 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698