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