Chromium Code Reviews| 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): Remove Platform dependency and move to audio/BUILD.gn | |
| 2166 "audio/PushPullFIFOSmokeTest.cpp", | |
|
hongchan
2017/04/20 18:01:37
To be able to spawn a thread from Platform::Curren
haraken
2017/04/20 20:20:51
Would you help me understand the problem? platform
hongchan
2017/04/20 20:35:09
With the blink_platform_unittests, Platform::Curre
| |
| 2164 ] | 2167 ] |
| 2165 | 2168 |
| 2166 configs += [ | 2169 configs += [ |
| 2167 ":blink_platform_pch", | 2170 ":blink_platform_pch", |
| 2168 "//third_party/WebKit/Source:config", | 2171 "//third_party/WebKit/Source:config", |
| 2169 "//third_party/WebKit/Source:inside_blink", | 2172 "//third_party/WebKit/Source:inside_blink", |
| 2170 ] | 2173 ] |
| 2171 | 2174 |
| 2172 deps = [ | 2175 deps = [ |
| 2173 ":test_support", | 2176 ":test_support", |
| 2174 "//testing/gmock", | 2177 "//testing/gmock", |
| 2175 "//testing/gtest", | 2178 "//testing/gtest", |
| 2176 ] | 2179 ] |
| 2177 } | 2180 } |
| OLD | NEW |