| 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/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.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/config.gni") | 8 import("//third_party/WebKit/Source/config.gni") |
| 9 import("//third_party/WebKit/Source/core/core.gni") | 9 import("//third_party/WebKit/Source/core/core.gni") |
| 10 import("//third_party/WebKit/Source/modules/modules.gni") | 10 import("//third_party/WebKit/Source/modules/modules.gni") |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 "tests/NGInlineLayoutTest.cpp", | 348 "tests/NGInlineLayoutTest.cpp", |
| 349 "tests/PrerenderingTest.cpp", | 349 "tests/PrerenderingTest.cpp", |
| 350 "tests/ProgrammaticScrollTest.cpp", | 350 "tests/ProgrammaticScrollTest.cpp", |
| 351 "tests/ResizeObserverTest.cpp", | 351 "tests/ResizeObserverTest.cpp", |
| 352 "tests/RootScrollerTest.cpp", | 352 "tests/RootScrollerTest.cpp", |
| 353 "tests/RunAllTests.cpp", | 353 "tests/RunAllTests.cpp", |
| 354 "tests/ScreenWakeLockTest.cpp", | 354 "tests/ScreenWakeLockTest.cpp", |
| 355 "tests/ScrollingCoordinatorTest.cpp", | 355 "tests/ScrollingCoordinatorTest.cpp", |
| 356 "tests/SpinLockTest.cpp", | 356 "tests/SpinLockTest.cpp", |
| 357 "tests/TextFinderTest.cpp", | 357 "tests/TextFinderTest.cpp", |
| 358 "tests/TextSelectionRepaintTest.cpp", |
| 358 "tests/TimerPerfTest.cpp", | 359 "tests/TimerPerfTest.cpp", |
| 359 "tests/TouchActionTest.cpp", | 360 "tests/TouchActionTest.cpp", |
| 360 "tests/ViewportTest.cpp", | 361 "tests/ViewportTest.cpp", |
| 361 "tests/VirtualTimeTest.cpp", | 362 "tests/VirtualTimeTest.cpp", |
| 362 "tests/VisualViewportTest.cpp", | 363 "tests/VisualViewportTest.cpp", |
| 363 "tests/WebDocumentSubresourceFilterTest.cpp", | 364 "tests/WebDocumentSubresourceFilterTest.cpp", |
| 364 "tests/WebDocumentTest.cpp", | 365 "tests/WebDocumentTest.cpp", |
| 365 "tests/WebFrameSerializerTest.cpp", | 366 "tests/WebFrameSerializerTest.cpp", |
| 366 "tests/WebFrameTest.cpp", | 367 "tests/WebFrameTest.cpp", |
| 367 "tests/WebHelperPluginTest.cpp", | 368 "tests/WebHelperPluginTest.cpp", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 378 "tests/WebUserGestureTokenTest.cpp", | 379 "tests/WebUserGestureTokenTest.cpp", |
| 379 "tests/WebViewTest.cpp", | 380 "tests/WebViewTest.cpp", |
| 380 "tests/sim/SimCanvas.cpp", | 381 "tests/sim/SimCanvas.cpp", |
| 381 "tests/sim/SimCanvas.h", | 382 "tests/sim/SimCanvas.h", |
| 382 "tests/sim/SimCompositor.cpp", | 383 "tests/sim/SimCompositor.cpp", |
| 383 "tests/sim/SimCompositor.h", | 384 "tests/sim/SimCompositor.h", |
| 384 "tests/sim/SimDisplayItemList.cpp", | 385 "tests/sim/SimDisplayItemList.cpp", |
| 385 "tests/sim/SimDisplayItemList.h", | 386 "tests/sim/SimDisplayItemList.h", |
| 386 "tests/sim/SimNetwork.cpp", | 387 "tests/sim/SimNetwork.cpp", |
| 387 "tests/sim/SimNetwork.h", | 388 "tests/sim/SimNetwork.h", |
| 389 "tests/sim/SimPage.cpp", |
| 390 "tests/sim/SimPage.h", |
| 388 "tests/sim/SimRequest.cpp", | 391 "tests/sim/SimRequest.cpp", |
| 389 "tests/sim/SimRequest.h", | 392 "tests/sim/SimRequest.h", |
| 390 "tests/sim/SimTest.cpp", | 393 "tests/sim/SimTest.cpp", |
| 391 "tests/sim/SimTest.h", | 394 "tests/sim/SimTest.h", |
| 392 "tests/sim/SimWebViewClient.cpp", | 395 "tests/sim/SimWebViewClient.cpp", |
| 393 "tests/sim/SimWebViewClient.h", | 396 "tests/sim/SimWebViewClient.h", |
| 394 ] | 397 ] |
| 395 sources += bindings_unittest_files | 398 sources += bindings_unittest_files |
| 396 | 399 |
| 397 deps = [ | 400 deps = [ |
| (...skipping 30 matching lines...) Expand all Loading... |
| 428 | 431 |
| 429 if (is_android) { | 432 if (is_android) { |
| 430 deps += [ | 433 deps += [ |
| 431 "//base:base_java", | 434 "//base:base_java", |
| 432 "//content/public/android:content_java", | 435 "//content/public/android:content_java", |
| 433 "//content/shell/android:content_shell_assets", | 436 "//content/shell/android:content_shell_assets", |
| 434 "//net/android:net_java", | 437 "//net/android:net_java", |
| 435 ] | 438 ] |
| 436 } | 439 } |
| 437 } | 440 } |
| OLD | NEW |