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/split_static_library.gni") | 5 import("//build/split_static_library.gni") |
6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
7 import("//third_party/WebKit/Source/bindings/bindings.gni") | 7 import("//third_party/WebKit/Source/bindings/bindings.gni") |
8 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") | 8 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") |
9 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") | 9 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") |
10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 "payments/PaymentsValidatorsTest.cpp", | 280 "payments/PaymentsValidatorsTest.cpp", |
281 "peerconnection/RTCDataChannelTest.cpp", | 281 "peerconnection/RTCDataChannelTest.cpp", |
282 "presentation/PresentationAvailabilityTest.cpp", | 282 "presentation/PresentationAvailabilityTest.cpp", |
283 "presentation/PresentationReceiverTest.cpp", | 283 "presentation/PresentationReceiverTest.cpp", |
284 "presentation/PresentationRequestTest.cpp", | 284 "presentation/PresentationRequestTest.cpp", |
285 "push_messaging/PushManagerTest.cpp", | 285 "push_messaging/PushManagerTest.cpp", |
286 "push_messaging/PushMessageDataTest.cpp", | 286 "push_messaging/PushMessageDataTest.cpp", |
287 "remoteplayback/RemotePlaybackTest.cpp", | 287 "remoteplayback/RemotePlaybackTest.cpp", |
288 "serviceworkers/ServiceWorkerContainerTest.cpp", | 288 "serviceworkers/ServiceWorkerContainerTest.cpp", |
289 "webaudio/AudioBasicProcessorHandlerTest.cpp", | 289 "webaudio/AudioBasicProcessorHandlerTest.cpp", |
| 290 "webaudio/AudioContextTest.cpp", |
290 "webaudio/AudioWorkletThreadTest.cpp", | 291 "webaudio/AudioWorkletThreadTest.cpp", |
291 "webaudio/BaseAudioContextTest.cpp", | 292 "webaudio/BaseAudioContextTest.cpp", |
292 "webaudio/ConvolverNodeTest.cpp", | 293 "webaudio/ConvolverNodeTest.cpp", |
293 "webaudio/DynamicsCompressorNodeTest.cpp", | 294 "webaudio/DynamicsCompressorNodeTest.cpp", |
294 "webaudio/ScriptProcessorNodeTest.cpp", | 295 "webaudio/ScriptProcessorNodeTest.cpp", |
295 "webaudio/StereoPannerNodeTest.cpp", | 296 "webaudio/StereoPannerNodeTest.cpp", |
296 "webdatabase/QuotaTrackerTest.cpp", | 297 "webdatabase/QuotaTrackerTest.cpp", |
297 "websockets/DOMWebSocketTest.cpp", | 298 "websockets/DOMWebSocketTest.cpp", |
298 "websockets/DocumentWebSocketChannelTest.cpp", | 299 "websockets/DocumentWebSocketChannelTest.cpp", |
299 ] | 300 ] |
300 | 301 |
301 configs += [ | 302 configs += [ |
302 "//third_party/WebKit/Source:config", | 303 "//third_party/WebKit/Source:config", |
303 "//third_party/WebKit/Source:inside_blink", | 304 "//third_party/WebKit/Source:inside_blink", |
304 "//third_party/WebKit/Source/core:blink_core_pch", | 305 "//third_party/WebKit/Source/core:blink_core_pch", |
305 ] | 306 ] |
306 | 307 |
307 deps = [ | 308 deps = [ |
308 ":modules", | 309 ":modules", |
309 ":modules_testing", | 310 ":modules_testing", |
310 "//components/payments:payment_request_blink", | 311 "//components/payments:payment_request_blink", |
311 "//skia", | 312 "//skia", |
312 "//testing/gmock", | 313 "//testing/gmock", |
313 "//testing/gtest", | 314 "//testing/gtest", |
314 "//third_party/WebKit/Source/core", | 315 "//third_party/WebKit/Source/core", |
315 "//third_party/WebKit/Source/wtf", | 316 "//third_party/WebKit/Source/wtf", |
316 "//v8", | 317 "//v8", |
317 ] | 318 ] |
318 } | 319 } |
OLD | NEW |