| 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 "//components/clipboard:apptests", | |
| 617 "//components/filesystem:apptests", | 616 "//components/filesystem:apptests", |
| 618 "//components/mus/ws:tests", | 617 "//components/mus/ws:tests", |
| 619 "//components/resource_provider:apptests", | 618 "//components/resource_provider:apptests", |
| 620 "//components/resource_provider:resource_provider_unittests", | 619 "//components/resource_provider:resource_provider_unittests", |
| 621 "//mash/wm:tests", | 620 "//mash/wm:tests", |
| 622 "//media/mojo/services:tests", | 621 "//media/mojo/services:tests", |
| 623 "//sql/mojo:apptests", | 622 "//sql/mojo:apptests", |
| 624 "//ui/views/mus:tests", | 623 "//ui/views/mus:tests", |
| 625 ] | 624 ] |
| 626 } | 625 } |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 892 ] | 891 ] |
| 893 | 892 |
| 894 if (target_cpu == "x86") { | 893 if (target_cpu == "x86") { |
| 895 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] | 894 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] |
| 896 } | 895 } |
| 897 } else { | 896 } else { |
| 898 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 897 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
| 899 } | 898 } |
| 900 } | 899 } |
| 901 } | 900 } |
| OLD | NEW |