| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 # This is the root build file for GN. GN will start processing by loading this | 5 # This is the root build file for GN. GN will start processing by loading this |
| 6 # file, and recursively load all dependencies until all dependencies are either | 6 # file, and recursively load all dependencies until all dependencies are either |
| 7 # resolved or known not to exist (which will cause the build to fail). So if | 7 # resolved or known not to exist (which will cause the build to fail). So if |
| 8 # you add a new build file, there must be some path of dependencies from this | 8 # you add a new build file, there must be some path of dependencies from this |
| 9 # file to your new one or GN won't know about it. | 9 # file to your new one or GN won't know about it. |
| 10 | 10 |
| (...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 606 } | 606 } |
| 607 | 607 |
| 608 # This group contains all the targets needed to run mojo's apptest_runner. | 608 # This group contains all the targets needed to run mojo's apptest_runner. |
| 609 group("mojo_apptests") { | 609 group("mojo_apptests") { |
| 610 testonly = true | 610 testonly = true |
| 611 | 611 |
| 612 deps = [] | 612 deps = [] |
| 613 | 613 |
| 614 if (is_win || is_linux) { | 614 if (is_win || is_linux) { |
| 615 deps += [ | 615 deps += [ |
| 616 "//mandoline:tests", | 616 "//components/clipboard:apptests", |
| 617 "//components/filesystem:apptests", |
| 618 "//components/mus/ws:tests", |
| 619 "//components/resource_provider:apptests", |
| 620 "//components/resource_provider:resource_provider_unittests", |
| 617 "//mash/wm:tests", | 621 "//mash/wm:tests", |
| 618 "//media/mojo/services:tests", | 622 "//media/mojo/services:tests", |
| 623 "//sql/mojo:apptests", |
| 619 "//ui/views/mus:tests", | 624 "//ui/views/mus:tests", |
| 620 ] | 625 ] |
| 621 } | 626 } |
| 622 } | 627 } |
| 623 | 628 |
| 624 group("gn_only") { | 629 group("gn_only") { |
| 625 testonly = true | 630 testonly = true |
| 626 | 631 |
| 627 deps = [] | 632 deps = [] |
| 628 | 633 |
| 629 if (!is_ios) { | 634 if (!is_ios) { |
| 630 deps += [ "//mojo/common:mojo_common_perftests" ] | 635 deps += [ "//mojo/common:mojo_common_perftests" ] |
| 631 } | 636 } |
| 632 | 637 |
| 633 if (!is_mac && !is_ios && !is_chromecast) { | |
| 634 deps += [ "//mandoline:all" ] | |
| 635 } | |
| 636 | |
| 637 if (!is_android && !is_ios && !is_chromeos) { | 638 if (!is_android && !is_ios && !is_chromeos) { |
| 638 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] | 639 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] |
| 639 } | 640 } |
| 640 | 641 |
| 641 if (is_win || is_linux) { | 642 if (is_win || is_linux) { |
| 642 deps += [ | 643 deps += [ |
| 643 ":mojo_apptests", | 644 ":mojo_apptests", |
| 644 "//mash:all", | 645 "//mash:all", |
| 646 "//mojo", |
| 645 ] | 647 ] |
| 646 } | 648 } |
| 647 | 649 |
| 648 if (is_win && use_drfuzz) { | 650 if (is_win && use_drfuzz) { |
| 649 # build libfuzzer fuzzers on Windows to run with Dr. Fuzz | 651 # build libfuzzer fuzzers on Windows to run with Dr. Fuzz |
| 650 deps += [ | 652 deps += [ |
| 651 "//testing/libfuzzer/fuzzers", | 653 "//testing/libfuzzer/fuzzers", |
| 652 "//testing/libfuzzer/tests:libfuzzer_tests", | 654 "//testing/libfuzzer/tests:libfuzzer_tests", |
| 653 ] | 655 ] |
| 654 } | 656 } |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 890 ] | 892 ] |
| 891 | 893 |
| 892 if (target_cpu == "x86") { | 894 if (target_cpu == "x86") { |
| 893 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] | 895 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] |
| 894 } | 896 } |
| 895 } else { | 897 } else { |
| 896 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 898 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
| 897 } | 899 } |
| 898 } | 900 } |
| 899 } | 901 } |
| OLD | NEW |