| 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 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 662 } | 662 } |
| 663 if (is_win) { | 663 if (is_win) { |
| 664 if (symbol_level != 0) { | 664 if (symbol_level != 0) { |
| 665 data += [ "$root_out_dir/content_browsertests.exe.pdb" ] | 665 data += [ "$root_out_dir/content_browsertests.exe.pdb" ] |
| 666 } | 666 } |
| 667 } | 667 } |
| 668 if (is_linux) { | 668 if (is_linux) { |
| 669 data += [ "//testing/buildbot/filters/browser-side-navigation.linux.cont
ent_browsertests.filter" ] | 669 data += [ "//testing/buildbot/filters/browser-side-navigation.linux.cont
ent_browsertests.filter" ] |
| 670 } | 670 } |
| 671 | 671 |
| 672 if (is_win || is_linux) { | 672 if (is_win || is_linux || is_android) { |
| 673 data += [ "//testing/buildbot/filters/site-per-process.content_browserte
sts.filter" ] | 673 data += [ "//testing/buildbot/filters/site-per-process.content_browserte
sts.filter" ] |
| 674 } | 674 } |
| 675 } | 675 } |
| 676 } | 676 } |
| 677 | 677 |
| 678 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 678 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
| 679 | 679 |
| 680 configs += [ | 680 configs += [ |
| 681 "//build/config:precompiled_headers", | 681 "//build/config:precompiled_headers", |
| 682 "//build/config/compiler:no_size_t_to_int_warning", | 682 "//build/config/compiler:no_size_t_to_int_warning", |
| (...skipping 1003 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1686 if (is_android) { | 1686 if (is_android) { |
| 1687 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1687 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1688 } | 1688 } |
| 1689 } | 1689 } |
| 1690 | 1690 |
| 1691 group("fuzzers") { | 1691 group("fuzzers") { |
| 1692 deps = [ | 1692 deps = [ |
| 1693 "//content/test/fuzzer", | 1693 "//content/test/fuzzer", |
| 1694 ] | 1694 ] |
| 1695 } | 1695 } |
| OLD | NEW |