Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(268)

Side by Side Diff: blimp/engine/BUILD.gn

Issue 2320923002: Add a full Blimp integration test. (Closed)
Patch Set: Fixed this a bit more. Still some thread violations :(. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 656 matching lines...) Expand 10 before | Expand all | Expand 10 after
667 } 667 }
668 668
669 source_set("browser_tests") { 669 source_set("browser_tests") {
670 testonly = true 670 testonly = true
671 671
672 sources = [ 672 sources = [
673 "browser_tests/blimp_browser_test.cc", 673 "browser_tests/blimp_browser_test.cc",
674 "browser_tests/blimp_browser_test.h", 674 "browser_tests/blimp_browser_test.h",
675 "browser_tests/blimp_test_launcher.cc", 675 "browser_tests/blimp_test_launcher.cc",
676 "browser_tests/engine_browsertest.cc", 676 "browser_tests/engine_browsertest.cc",
677 "browser_tests/integration_test.cc",
677 ] 678 ]
678 679
679 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] 680 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
680 681
681 deps = [ 682 deps = [
682 "//base", 683 "//base",
683 "//blimp/client:session", 684 "//blimp/client:session",
684 "//blimp/client:test_support", 685 "//blimp/client:test_support",
685 "//blimp/client/core:switches", 686 "//blimp/client/core:switches",
686 "//blimp/client/core/contents:test_support", 687 "//blimp/client/core/contents:test_support",
687 "//blimp/client/core/render_widget:test_support", 688 "//blimp/client/core/render_widget:test_support",
688 "//blimp/client/core/session", 689 "//blimp/client/core/session",
689 "//blimp/client/support:test_support", 690 "//blimp/client/test",
690 "//blimp/common", 691 "//blimp/common",
691 "//blimp/engine:app", 692 "//blimp/engine:app",
692 "//blimp/engine:app_config", 693 "//blimp/engine:app_config",
693 "//blimp/engine:app_switches", 694 "//blimp/engine:app_switches",
694 "//blimp/engine:pak", 695 "//blimp/engine:pak",
695 "//blimp/engine:session", 696 "//blimp/engine:session",
696 "//blimp/engine:test_support", 697 "//blimp/engine:test_support",
697 "//blimp/net", 698 "//blimp/net",
698 "//content/public/app:both", 699 "//content/public/app:both",
699 "//content/test:test_support", 700 "//content/test:test_support",
700 "//testing/gmock", 701 "//testing/gmock",
701 "//testing/gtest", 702 "//testing/gtest",
702 ] 703 ]
703 704
704 data = [ 705 data = [
705 "//blimp/test/data/", 706 "//blimp/test/data/",
706 "$root_out_dir/blimp_engine.pak", 707 "$root_out_dir/blimp_engine.pak",
707 ] 708 ]
708 } 709 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698