| 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 744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 755 # Include symupload target here as it is needed by the buildbots to upload | 755 # Include symupload target here as it is needed by the buildbots to upload |
| 756 # the symbol file created by dump_syms. | 756 # the symbol file created by dump_syms. |
| 757 deps = [ | 757 deps = [ |
| 758 ":blimp_engine_app", | 758 ":blimp_engine_app", |
| 759 "//breakpad:symupload", | 759 "//breakpad:symupload", |
| 760 dump_syms_label, | 760 dump_syms_label, |
| 761 ] | 761 ] |
| 762 } | 762 } |
| 763 } | 763 } |
| 764 } | 764 } |
| 765 | |
| 766 source_set("browser_tests") { | |
| 767 testonly = true | |
| 768 | |
| 769 sources = [ | |
| 770 "browser_tests/blimp_browser_test.cc", | |
| 771 "browser_tests/blimp_browser_test.h", | |
| 772 "browser_tests/blimp_client_session.cc", | |
| 773 "browser_tests/blimp_client_session.h", | |
| 774 "browser_tests/blimp_contents_view_readback_helper.cc", | |
| 775 "browser_tests/blimp_contents_view_readback_helper.h", | |
| 776 "browser_tests/blimp_test_launcher.cc", | |
| 777 "browser_tests/input_browsertest.cc", | |
| 778 "browser_tests/integration_test.cc", | |
| 779 "browser_tests/navigation_browsertest.cc", | |
| 780 "browser_tests/test_client_session.cc", | |
| 781 "browser_tests/test_client_session.h", | |
| 782 "browser_tests/waitable_content_pump.cc", | |
| 783 "browser_tests/waitable_content_pump.h", | |
| 784 ] | |
| 785 | |
| 786 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | |
| 787 | |
| 788 deps = [ | |
| 789 "//base", | |
| 790 "//blimp/client/core/compositor", | |
| 791 "//blimp/client/core/contents", | |
| 792 "//blimp/client/core/contents:test_support", | |
| 793 "//blimp/client/core/context", | |
| 794 "//blimp/client/core/geolocation", | |
| 795 "//blimp/client/core/render_widget", | |
| 796 "//blimp/client/core/render_widget:test_support", | |
| 797 "//blimp/client/core/session", | |
| 798 "//blimp/client/core/settings", | |
| 799 "//blimp/client/core/switches", | |
| 800 "//blimp/client/test", | |
| 801 "//blimp/common", | |
| 802 "//blimp/common/proto", | |
| 803 "//blimp/engine:app", | |
| 804 "//blimp/engine:app_config", | |
| 805 "//blimp/engine:app_switches", | |
| 806 "//blimp/engine:pak", | |
| 807 "//blimp/engine:session", | |
| 808 "//blimp/engine:test_support", | |
| 809 "//blimp/net", | |
| 810 "//components/prefs:test_support", | |
| 811 "//content/public/app:both", | |
| 812 "//content/test:test_support", | |
| 813 "//device/geolocation", | |
| 814 "//net", | |
| 815 "//testing/gmock", | |
| 816 "//testing/gtest", | |
| 817 "//ui/events", | |
| 818 "//ui/gfx/geometry", | |
| 819 "//url", | |
| 820 ] | |
| 821 | |
| 822 data = [ | |
| 823 "//blimp/test/data/", | |
| 824 "$root_out_dir/blimp_engine.pak", | |
| 825 ] | |
| 826 } | |
| OLD | NEW |