| 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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 "payments/PaymentsValidatorsTest.cpp", | 266 "payments/PaymentsValidatorsTest.cpp", |
| 267 "peerconnection/RTCDataChannelTest.cpp", | 267 "peerconnection/RTCDataChannelTest.cpp", |
| 268 "presentation/PresentationAvailabilityTest.cpp", | 268 "presentation/PresentationAvailabilityTest.cpp", |
| 269 "presentation/PresentationReceiverTest.cpp", | 269 "presentation/PresentationReceiverTest.cpp", |
| 270 "push_messaging/PushManagerTest.cpp", | 270 "push_messaging/PushManagerTest.cpp", |
| 271 "push_messaging/PushMessageDataTest.cpp", | 271 "push_messaging/PushMessageDataTest.cpp", |
| 272 "remoteplayback/RemotePlaybackTest.cpp", | 272 "remoteplayback/RemotePlaybackTest.cpp", |
| 273 "serviceworkers/ServiceWorkerContainerTest.cpp", | 273 "serviceworkers/ServiceWorkerContainerTest.cpp", |
| 274 "webaudio/AudioBasicProcessorHandlerTest.cpp", | 274 "webaudio/AudioBasicProcessorHandlerTest.cpp", |
| 275 "webaudio/AudioWorkletThreadTest.cpp", | 275 "webaudio/AudioWorkletThreadTest.cpp", |
| 276 "webaudio/BaseAudioContextTest.cpp", |
| 276 "webaudio/ConvolverNodeTest.cpp", | 277 "webaudio/ConvolverNodeTest.cpp", |
| 277 "webaudio/DynamicsCompressorNodeTest.cpp", | 278 "webaudio/DynamicsCompressorNodeTest.cpp", |
| 278 "webaudio/ScriptProcessorNodeTest.cpp", | 279 "webaudio/ScriptProcessorNodeTest.cpp", |
| 279 "webaudio/StereoPannerNodeTest.cpp", | 280 "webaudio/StereoPannerNodeTest.cpp", |
| 280 "webdatabase/QuotaTrackerTest.cpp", | 281 "webdatabase/QuotaTrackerTest.cpp", |
| 281 "websockets/DOMWebSocketTest.cpp", | 282 "websockets/DOMWebSocketTest.cpp", |
| 282 "websockets/DocumentWebSocketChannelTest.cpp", | 283 "websockets/DocumentWebSocketChannelTest.cpp", |
| 283 ] | 284 ] |
| 284 | 285 |
| 285 configs += [ | 286 configs += [ |
| 286 "//third_party/WebKit/Source:config", | 287 "//third_party/WebKit/Source:config", |
| 287 "//third_party/WebKit/Source:inside_blink", | 288 "//third_party/WebKit/Source:inside_blink", |
| 288 ] | 289 ] |
| 289 | 290 |
| 290 deps = [ | 291 deps = [ |
| 291 ":modules", | 292 ":modules", |
| 292 ":modules_testing", | 293 ":modules_testing", |
| 293 "//skia", | 294 "//skia", |
| 294 "//testing/gmock", | 295 "//testing/gmock", |
| 295 "//testing/gtest", | 296 "//testing/gtest", |
| 296 "//third_party/WebKit/Source/core", | 297 "//third_party/WebKit/Source/core", |
| 297 "//third_party/WebKit/Source/wtf", | 298 "//third_party/WebKit/Source/wtf", |
| 298 "//v8", | 299 "//v8", |
| 299 ] | 300 ] |
| 300 } | 301 } |
| OLD | NEW |