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 597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
608 | 608 |
609 if (is_win || is_linux) { | 609 if (is_win || is_linux) { |
610 deps += [ | 610 deps += [ |
611 "//components/clipboard:apptests", | 611 "//components/clipboard:apptests", |
612 "//components/filesystem:apptests", | 612 "//components/filesystem:apptests", |
613 "//components/mus/ws:tests", | 613 "//components/mus/ws:tests", |
614 "//components/resource_provider:apptests", | 614 "//components/resource_provider:apptests", |
615 "//components/resource_provider:resource_provider_unittests", | 615 "//components/resource_provider:resource_provider_unittests", |
616 "//mash/wm:tests", | 616 "//mash/wm:tests", |
617 "//media/mojo/services:tests", | 617 "//media/mojo/services:tests", |
| 618 "//mojo/services/network:apptests", |
| 619 "//mojo/shell:apptests", |
618 "//sql/mojo:apptests", | 620 "//sql/mojo:apptests", |
619 "//ui/views/mus:tests", | 621 "//ui/views/mus:tests", |
620 ] | 622 ] |
621 } | 623 } |
| 624 |
| 625 if (is_android) { |
| 626 deps += [ "//mojo/shell/standalone:mojo_shell_standalone_apptests_apk" ] |
| 627 } |
622 } | 628 } |
623 | 629 |
624 group("gn_only") { | 630 group("gn_only") { |
625 testonly = true | 631 testonly = true |
626 | 632 |
627 deps = [] | 633 deps = [] |
628 | 634 |
629 if (!is_ios) { | 635 if (!is_ios) { |
630 deps += [ "//mojo/common:mojo_common_perftests" ] | 636 deps += [ "//mojo/common:mojo_common_perftests" ] |
631 } | 637 } |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
887 ] | 893 ] |
888 | 894 |
889 if (target_cpu == "x86") { | 895 if (target_cpu == "x86") { |
890 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] | 896 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] |
891 } | 897 } |
892 } else { | 898 } else { |
893 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 899 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
894 } | 900 } |
895 } | 901 } |
896 } | 902 } |
OLD | NEW |