| OLD | NEW |
| 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 2037 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2048 | 2048 |
| 2049 # NOTE: These are legacy unit tests and tests that require a Platform | 2049 # NOTE: These are legacy unit tests and tests that require a Platform |
| 2050 # object. Do not add more unless the test requires a Platform object. | 2050 # object. Do not add more unless the test requires a Platform object. |
| 2051 # These tests are a part of the webkit_unit_tests binary. | 2051 # These tests are a part of the webkit_unit_tests binary. |
| 2052 source_set("unit_tests") { | 2052 source_set("unit_tests") { |
| 2053 testonly = true | 2053 testonly = true |
| 2054 visibility = [] | 2054 visibility = [] |
| 2055 visibility = [ "//third_party/WebKit/Source/*" ] | 2055 visibility = [ "//third_party/WebKit/Source/*" ] |
| 2056 sources = [ | 2056 sources = [ |
| 2057 "graphics/Canvas2DLayerBridgeTest.cpp", | 2057 "graphics/Canvas2DLayerBridgeTest.cpp", |
| 2058 "graphics/CanvasSurfaceLayerBridgeTest.cpp", | |
| 2059 "graphics/DeferredImageDecoderTest.cpp", | 2058 "graphics/DeferredImageDecoderTest.cpp", |
| 2060 "graphics/GraphicsLayerTest.cpp", | 2059 "graphics/GraphicsLayerTest.cpp", |
| 2061 "graphics/ImageDecodingStoreTest.cpp", | 2060 "graphics/ImageDecodingStoreTest.cpp", |
| 2062 "graphics/ImageFrameGeneratorTest.cpp", | 2061 "graphics/ImageFrameGeneratorTest.cpp", |
| 2063 "graphics/ImageLayerChromiumTest.cpp", | 2062 "graphics/ImageLayerChromiumTest.cpp", |
| 2064 "graphics/gpu/DrawingBufferSoftwareRenderingTest.cpp", | 2063 "graphics/gpu/DrawingBufferSoftwareRenderingTest.cpp", |
| 2065 "graphics/test/FakeGLES2Interface.h", | 2064 "graphics/test/FakeGLES2Interface.h", |
| 2066 "graphics/test/FakeWebGraphicsContext3DProvider.h", | 2065 "graphics/test/FakeWebGraphicsContext3DProvider.h", |
| 2067 "graphics/test/MockImageDecoder.h", | 2066 "graphics/test/MockImageDecoder.h", |
| 2068 ] | 2067 ] |
| 2069 | 2068 |
| 2070 configs += [ | 2069 configs += [ |
| 2071 ":blink_platform_pch", | 2070 ":blink_platform_pch", |
| 2072 "//third_party/WebKit/Source:config", | 2071 "//third_party/WebKit/Source:config", |
| 2073 "//third_party/WebKit/Source:inside_blink", | 2072 "//third_party/WebKit/Source:inside_blink", |
| 2074 ] | 2073 ] |
| 2075 | 2074 |
| 2076 deps = [ | 2075 deps = [ |
| 2077 ":test_support", | 2076 ":test_support", |
| 2078 "//cc/surfaces:surface_id", | |
| 2079 "//testing/gmock", | 2077 "//testing/gmock", |
| 2080 "//testing/gtest", | 2078 "//testing/gtest", |
| 2081 ] | 2079 ] |
| 2082 } | 2080 } |
| OLD | NEW |