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