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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
10 import("//mojo/public/tools/bindings/mojom.gni") | 10 import("//mojo/public/tools/bindings/mojom.gni") |
(...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
634 "../renderer/render_view_browsertest.cc", | 634 "../renderer/render_view_browsertest.cc", |
635 "../renderer/render_view_browsertest_mac.mm", | 635 "../renderer/render_view_browsertest_mac.mm", |
636 "../renderer/render_widget_browsertest.cc", | 636 "../renderer/render_widget_browsertest.cc", |
637 "../renderer/visual_state_browsertest.cc", | 637 "../renderer/visual_state_browsertest.cc", |
638 "../renderer/webclipboard_impl_browsertest.cc", | 638 "../renderer/webclipboard_impl_browsertest.cc", |
639 "../test/browser_test_utils_browsertest.cc", | 639 "../test/browser_test_utils_browsertest.cc", |
640 "../test/content_browser_test_test.cc", | 640 "../test/content_browser_test_test.cc", |
641 "../test/webui_resource_browsertest.cc", | 641 "../test/webui_resource_browsertest.cc", |
642 ] | 642 ] |
643 | 643 |
644 if (is_android || is_linux || is_mac || is_win) { | 644 if (is_android || is_linux || is_mac || is_win) { |
sky
2016/10/20 20:36:48
Thanks for trying to clean things up. These condit
Łukasz Anforowicz
2016/10/20 21:40:54
Done.
| |
645 data = [ | 645 data = [ |
646 "$root_out_dir/content_shell.pak", | 646 "$root_out_dir/content_shell.pak", |
647 "data/", | 647 "data/", |
648 "//media/test/data/", | 648 "//media/test/data/", |
649 ] | 649 ] |
650 | 650 } |
651 if (!is_android) { | 651 if (is_linux || is_mac || is_win) { |
652 data += [ | 652 data += [ |
653 "//net/tools/testserver/", | 653 "//net/tools/testserver/", |
654 "//ppapi/tests/test_case.html", | 654 "//ppapi/tests/test_case.html", |
655 "//ppapi/tests/test_page.css", | 655 "//ppapi/tests/test_page.css", |
656 "//third_party/pyftpdlib/", | 656 "//third_party/pyftpdlib/", |
657 "//third_party/pywebsocket/", | 657 "//third_party/pywebsocket/", |
658 "//third_party/tlslite/", | 658 "//third_party/tlslite/", |
659 ] | 659 ] |
660 | 660 } |
661 if (is_mac) { | 661 if (is_mac) { |
662 data += [ "$root_out_dir/Content Shell.app/" ] | 662 data += [ "$root_out_dir/Content Shell.app/" ] |
663 } | 663 } |
664 if (is_win) { | 664 if (is_win) { |
665 if (symbol_level != 0) { | 665 if (symbol_level != 0) { |
666 data += [ "$root_out_dir/content_browsertests.exe.pdb" ] | 666 data += [ "$root_out_dir/content_browsertests.exe.pdb" ] |
667 } | |
668 } | |
669 if (is_linux) { | |
670 data += [ "//testing/buildbot/filters/browser-side-navigation.linux.cont ent_browsertests.filter" ] | |
671 } | |
672 | |
673 if (is_win || is_linux || is_android) { | |
674 data += [ "//testing/buildbot/filters/site-per-process.content_browserte sts.filter" ] | |
675 } | |
676 } | 667 } |
677 } | 668 } |
669 if (is_linux) { | |
670 data += [ "//testing/buildbot/filters/browser-side-navigation.linux.content_ browsertests.filter" ] | |
671 } | |
672 if (is_win || is_linux || is_android) { | |
673 data += [ "//testing/buildbot/filters/site-per-process.content_browsertests. filter" ] | |
674 } | |
678 | 675 |
679 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 676 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
680 | 677 |
681 configs += [ | 678 configs += [ |
682 "//build/config:precompiled_headers", | 679 "//build/config:precompiled_headers", |
683 "//build/config/compiler:no_size_t_to_int_warning", | 680 "//build/config/compiler:no_size_t_to_int_warning", |
684 ] | 681 ] |
685 | 682 |
686 deps = [ | 683 deps = [ |
687 ":browsertest_support", | 684 ":browsertest_support", |
(...skipping 1000 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1688 if (is_android) { | 1685 if (is_android) { |
1689 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1686 deps += [ "//testing/android/native_test:native_test_native_code" ] |
1690 } | 1687 } |
1691 } | 1688 } |
1692 | 1689 |
1693 group("fuzzers") { | 1690 group("fuzzers") { |
1694 deps = [ | 1691 deps = [ |
1695 "//content/test/fuzzer", | 1692 "//content/test/fuzzer", |
1696 ] | 1693 ] |
1697 } | 1694 } |
OLD | NEW |