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 2143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2154 "graphics/ImageDecodingStoreTest.cpp", | 2154 "graphics/ImageDecodingStoreTest.cpp", |
2155 "graphics/ImageFrameGeneratorTest.cpp", | 2155 "graphics/ImageFrameGeneratorTest.cpp", |
2156 "graphics/ImageLayerChromiumTest.cpp", | 2156 "graphics/ImageLayerChromiumTest.cpp", |
2157 "graphics/gpu/DrawingBufferSoftwareRenderingTest.cpp", | 2157 "graphics/gpu/DrawingBufferSoftwareRenderingTest.cpp", |
2158 "graphics/test/FakeGLES2Interface.h", | 2158 "graphics/test/FakeGLES2Interface.h", |
2159 "graphics/test/FakeWebGraphicsContext3DProvider.h", | 2159 "graphics/test/FakeWebGraphicsContext3DProvider.h", |
2160 "graphics/test/MockImageDecoder.h", | 2160 "graphics/test/MockImageDecoder.h", |
2161 | 2161 |
2162 # TODO(toyoshim): Remove Platform dependency and move to loader/BUILD.gn | 2162 # TODO(toyoshim): Remove Platform dependency and move to loader/BUILD.gn |
2163 "loader/fetch/ResourceResponseTest.cpp", | 2163 "loader/fetch/ResourceResponseTest.cpp", |
| 2164 |
| 2165 # TODO(hongchan): Platform::Current()->CreateThread() returns nullptr |
| 2166 # without adding the test file into this section. Remove platform dependency |
| 2167 # when creating a valid thread becomes possible in the Blink unit test. |
| 2168 "audio/PushPullFIFOSmokeTest.cpp", |
2164 ] | 2169 ] |
2165 | 2170 |
2166 configs += [ | 2171 configs += [ |
2167 ":blink_platform_pch", | 2172 ":blink_platform_pch", |
2168 "//third_party/WebKit/Source:config", | 2173 "//third_party/WebKit/Source:config", |
2169 "//third_party/WebKit/Source:inside_blink", | 2174 "//third_party/WebKit/Source:inside_blink", |
2170 ] | 2175 ] |
2171 | 2176 |
2172 deps = [ | 2177 deps = [ |
2173 ":test_support", | 2178 ":test_support", |
2174 "//testing/gmock", | 2179 "//testing/gmock", |
2175 "//testing/gtest", | 2180 "//testing/gtest", |
2176 ] | 2181 ] |
2177 } | 2182 } |
OLD | NEW |