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

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

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

Powered by Google App Engine
This is Rietveld 408576698