| 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 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 "tests/WebMeaningfulLayoutsTest.cpp", | 379 "tests/WebMeaningfulLayoutsTest.cpp", |
| 380 "tests/WebPluginContainerTest.cpp", | 380 "tests/WebPluginContainerTest.cpp", |
| 381 "tests/WebRangeTest.cpp", | 381 "tests/WebRangeTest.cpp", |
| 382 "tests/WebScopedWindowFocusAllowedIndicatorTest.cpp", | 382 "tests/WebScopedWindowFocusAllowedIndicatorTest.cpp", |
| 383 "tests/WebSearchableFormDataTest.cpp", | 383 "tests/WebSearchableFormDataTest.cpp", |
| 384 "tests/WebSelectorTest.cpp", | 384 "tests/WebSelectorTest.cpp", |
| 385 "tests/WebURLRequestTest.cpp", | 385 "tests/WebURLRequestTest.cpp", |
| 386 "tests/WebURLResponseTest.cpp", | 386 "tests/WebURLResponseTest.cpp", |
| 387 "tests/WebUserGestureTokenTest.cpp", | 387 "tests/WebUserGestureTokenTest.cpp", |
| 388 "tests/WebViewTest.cpp", | 388 "tests/WebViewTest.cpp", |
| 389 "tests/WindowProxyTest.cpp", |
| 389 "tests/sim/SimCanvas.cpp", | 390 "tests/sim/SimCanvas.cpp", |
| 390 "tests/sim/SimCanvas.h", | 391 "tests/sim/SimCanvas.h", |
| 391 "tests/sim/SimCompositor.cpp", | 392 "tests/sim/SimCompositor.cpp", |
| 392 "tests/sim/SimCompositor.h", | 393 "tests/sim/SimCompositor.h", |
| 393 "tests/sim/SimDisplayItemList.cpp", | 394 "tests/sim/SimDisplayItemList.cpp", |
| 394 "tests/sim/SimDisplayItemList.h", | 395 "tests/sim/SimDisplayItemList.h", |
| 395 "tests/sim/SimNetwork.cpp", | 396 "tests/sim/SimNetwork.cpp", |
| 396 "tests/sim/SimNetwork.h", | 397 "tests/sim/SimNetwork.h", |
| 397 "tests/sim/SimPage.cpp", | 398 "tests/sim/SimPage.cpp", |
| 398 "tests/sim/SimPage.h", | 399 "tests/sim/SimPage.h", |
| 399 "tests/sim/SimRequest.cpp", | 400 "tests/sim/SimRequest.cpp", |
| 400 "tests/sim/SimRequest.h", | 401 "tests/sim/SimRequest.h", |
| 401 "tests/sim/SimTest.cpp", | 402 "tests/sim/SimTest.cpp", |
| 402 "tests/sim/SimTest.h", | 403 "tests/sim/SimTest.h", |
| 404 "tests/sim/SimWebFrameClient.cpp", |
| 405 "tests/sim/SimWebFrameClient.h", |
| 403 "tests/sim/SimWebViewClient.cpp", | 406 "tests/sim/SimWebViewClient.cpp", |
| 404 "tests/sim/SimWebViewClient.h", | 407 "tests/sim/SimWebViewClient.h", |
| 405 ] | 408 ] |
| 406 sources += bindings_unittest_files | 409 sources += bindings_unittest_files |
| 407 | 410 |
| 408 deps = [ | 411 deps = [ |
| 409 ":test_support", | 412 ":test_support", |
| 410 ":web", | 413 ":web", |
| 411 "//base", | 414 "//base", |
| 412 "//base:i18n", | 415 "//base:i18n", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 440 | 443 |
| 441 if (is_android) { | 444 if (is_android) { |
| 442 deps += [ | 445 deps += [ |
| 443 "//base:base_java", | 446 "//base:base_java", |
| 444 "//content/public/android:content_java", | 447 "//content/public/android:content_java", |
| 445 "//content/shell/android:content_shell_assets", | 448 "//content/shell/android:content_shell_assets", |
| 446 "//net/android:net_java", | 449 "//net/android:net_java", |
| 447 ] | 450 ] |
| 448 } | 451 } |
| 449 } | 452 } |
| OLD | NEW |