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 658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
669 data += [ "$root_out_dir/Content Shell.app/" ] | 669 data += [ "$root_out_dir/Content Shell.app/" ] |
670 } | 670 } |
671 if (is_win) { | 671 if (is_win) { |
672 if (symbol_level != 0) { | 672 if (symbol_level != 0) { |
673 data += [ "$root_out_dir/content_browsertests.exe.pdb" ] | 673 data += [ "$root_out_dir/content_browsertests.exe.pdb" ] |
674 } | 674 } |
675 } | 675 } |
676 if (is_linux) { | 676 if (is_linux) { |
677 data += [ "//testing/buildbot/filters/browser-side-navigation.linux.cont
ent_browsertests.filter" ] | 677 data += [ "//testing/buildbot/filters/browser-side-navigation.linux.cont
ent_browsertests.filter" ] |
678 } | 678 } |
| 679 |
| 680 if (is_win || is_linux) { |
| 681 data += [ "//testing/buildbot/filters/site-per-process.content_browserte
sts.filter" ] |
| 682 } |
679 } | 683 } |
680 } | 684 } |
681 | 685 |
682 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 686 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
683 | 687 |
684 configs += [ | 688 configs += [ |
685 "//build/config:precompiled_headers", | 689 "//build/config:precompiled_headers", |
686 "//build/config/compiler:no_size_t_to_int_warning", | 690 "//build/config/compiler:no_size_t_to_int_warning", |
687 ] | 691 ] |
688 | 692 |
(...skipping 972 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1661 if (is_android) { | 1665 if (is_android) { |
1662 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1666 deps += [ "//testing/android/native_test:native_test_native_code" ] |
1663 } | 1667 } |
1664 } | 1668 } |
1665 | 1669 |
1666 group("fuzzers") { | 1670 group("fuzzers") { |
1667 deps = [ | 1671 deps = [ |
1668 "//content/test/fuzzer", | 1672 "//content/test/fuzzer", |
1669 ] | 1673 ] |
1670 } | 1674 } |
OLD | NEW |