OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/sanitizers/sanitizers.gni") | 7 import("//build/config/sanitizers/sanitizers.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//mojo/public/tools/bindings/mojom.gni") | 9 import("//mojo/public/tools/bindings/mojom.gni") |
10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
392 "app/ui/blimp_screen_unittest.cc", | 392 "app/ui/blimp_screen_unittest.cc", |
393 ] | 393 ] |
394 | 394 |
395 deps = [ | 395 deps = [ |
396 ":app", | 396 ":app", |
397 ":app_config", | 397 ":app_config", |
398 ":app_metrics", | 398 ":app_metrics", |
399 ":app_net", | 399 ":app_net", |
400 ":app_settings", | 400 ":app_settings", |
401 "//base", | 401 "//base", |
402 "//base/test:run_all_unittests", | |
403 "//base/test:test_support", | 402 "//base/test:test_support", |
404 "//blimp/common", | 403 "//blimp/common", |
405 "//blimp/common:test_support", | 404 "//blimp/common:test_support", |
406 "//blimp/engine:app_ui", | 405 "//blimp/engine:app_ui", |
407 "//components/metrics:metrics", | 406 "//components/metrics:metrics", |
408 "//components/pref_registry:pref_registry", | 407 "//components/pref_registry:pref_registry", |
409 "//components/prefs:prefs", | 408 "//components/prefs:prefs", |
410 "//components/prefs:test_support", | 409 "//components/prefs:test_support", |
411 "//content/test:test_support", | 410 "//content/test:test_support", |
412 "//net:test_support", | 411 "//net:test_support", |
413 "//testing/gmock", | 412 "//testing/gmock", |
414 "//testing/gtest", | 413 "//testing/gtest", |
415 "//ui/display", | 414 "//ui/display", |
416 "//ui/gfx:test_support", | 415 "//ui/gfx:test_support", |
417 ] | 416 ] |
418 } | 417 } |
419 | 418 |
420 source_set("common_unit_tests") { | 419 source_set("common_unit_tests") { |
421 testonly = true | 420 testonly = true |
422 | 421 |
423 sources = [ | 422 sources = [ |
424 "common/blimp_browser_context_unittest.cc", | 423 "common/blimp_browser_context_unittest.cc", |
425 ] | 424 ] |
426 | 425 |
427 deps = [ | 426 deps = [ |
428 ":common", | 427 ":common", |
429 "//base", | 428 "//base", |
430 "//base/test:run_all_unittests", | |
431 "//base/test:test_support", | 429 "//base/test:test_support", |
432 "//components/metrics:metrics", | 430 "//components/metrics:metrics", |
433 "//content/public/browser", | 431 "//content/public/browser", |
434 "//content/test:test_support", | 432 "//content/test:test_support", |
435 "//net:test_support", | 433 "//net:test_support", |
436 "//testing/gmock", | 434 "//testing/gmock", |
437 "//testing/gtest", | 435 "//testing/gtest", |
438 ] | 436 ] |
439 } | 437 } |
440 | 438 |
441 source_set("feature_unit_tests") { | 439 source_set("feature_unit_tests") { |
442 testonly = true | 440 testonly = true |
443 | 441 |
444 sources = [ | 442 sources = [ |
445 "feature/engine_render_widget_feature_unittest.cc", | 443 "feature/engine_render_widget_feature_unittest.cc", |
446 "feature/engine_settings_feature_unittest.cc", | 444 "feature/engine_settings_feature_unittest.cc", |
447 ] | 445 ] |
448 | 446 |
449 deps = [ | 447 deps = [ |
450 ":feature", | 448 ":feature", |
451 "//base", | 449 "//base", |
452 "//base/test:run_all_unittests", | |
453 "//base/test:test_support", | 450 "//base/test:test_support", |
454 "//blimp/common", | 451 "//blimp/common", |
455 "//blimp/common/proto", | 452 "//blimp/common/proto", |
456 "//blimp/engine:app_settings", | 453 "//blimp/engine:app_settings", |
457 "//blimp/net", | 454 "//blimp/net", |
458 "//blimp/net:test_support", | 455 "//blimp/net:test_support", |
459 "//content", | 456 "//content", |
460 "//content/public/browser", | 457 "//content/public/browser", |
461 "//net", | 458 "//net", |
462 "//net:test_support", | 459 "//net:test_support", |
463 "//testing/gmock", | 460 "//testing/gmock", |
464 "//testing/gtest", | 461 "//testing/gtest", |
465 "//third_party/WebKit/public:blink_headers", | 462 "//third_party/WebKit/public:blink_headers", |
466 "//ui/base:test_support", | 463 "//ui/base:test_support", |
467 ] | 464 ] |
468 } | 465 } |
469 | 466 |
470 source_set("renderer_unit_tests") { | 467 source_set("renderer_unit_tests") { |
471 testonly = true | 468 testonly = true |
472 | 469 |
473 sources = [ | 470 sources = [ |
474 "renderer/blimp_engine_picture_cache_unittest.cc", | 471 "renderer/blimp_engine_picture_cache_unittest.cc", |
| 472 "renderer/blob_channel_sender_proxy_unittest.cc", |
475 ] | 473 ] |
476 | 474 |
477 deps = [ | 475 deps = [ |
478 ":renderer", | 476 ":renderer", |
| 477 "//base", |
| 478 "//blimp/common", |
| 479 "//blimp/common:test_support", |
| 480 "//blimp/engine:blob_channel_mojo_cpp_sources", |
| 481 "//blimp/engine:blob_channel_service", |
| 482 "//blimp/net:test_support", |
479 "//blimp/test:support", | 483 "//blimp/test:support", |
| 484 "//mojo/public", |
480 "//skia", | 485 "//skia", |
481 "//testing/gmock", | 486 "//testing/gmock", |
482 "//testing/gtest", | 487 "//testing/gtest", |
483 ] | 488 ] |
484 } | 489 } |
485 | 490 |
486 source_set("unit_tests") { | 491 source_set("unit_tests") { |
487 testonly = true | 492 testonly = true |
488 | 493 |
489 deps = [ | 494 deps = [ |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
675 "//content/test:test_support", | 680 "//content/test:test_support", |
676 "//testing/gmock", | 681 "//testing/gmock", |
677 "//testing/gtest", | 682 "//testing/gtest", |
678 ] | 683 ] |
679 | 684 |
680 data = [ | 685 data = [ |
681 "//blimp/test/data/", | 686 "//blimp/test/data/", |
682 "$root_out_dir/blimp_engine.pak", | 687 "$root_out_dir/blimp_engine.pak", |
683 ] | 688 ] |
684 } | 689 } |
OLD | NEW |