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