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 723 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
734 } | 734 } |
735 } | 735 } |
736 | 736 |
737 if (is_android) { | 737 if (is_android) { |
738 deps += [ | 738 deps += [ |
739 "//build/android/gyp/test:hello_world", | 739 "//build/android/gyp/test:hello_world", |
740 "//build/android/incremental_install:bootstrap_java", | 740 "//build/android/incremental_install:bootstrap_java", |
741 ] | 741 ] |
742 } | 742 } |
743 | 743 |
| 744 if (is_linux && use_ozone) { |
| 745 deps += [ |
| 746 "//headless", |
| 747 "//headless:headless_tests", |
| 748 ] |
| 749 } |
| 750 |
744 if (!is_chromecast && (is_android || is_linux || is_chromeos)) { | 751 if (!is_chromecast && (is_android || is_linux || is_chromeos)) { |
745 deps += [ | 752 deps += [ |
746 "//blimp", | 753 "//blimp", |
747 "//blimp:blimp_tests", | 754 "//blimp:blimp_tests", |
748 ] | 755 ] |
749 } | 756 } |
750 } | 757 } |
751 | 758 |
752 group("gn_mojo_targets") { | 759 group("gn_mojo_targets") { |
753 testonly = true | 760 testonly = true |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
879 ] | 886 ] |
880 | 887 |
881 if (target_cpu == "x86") { | 888 if (target_cpu == "x86") { |
882 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] | 889 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] |
883 } | 890 } |
884 } else { | 891 } else { |
885 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 892 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
886 } | 893 } |
887 } | 894 } |
888 } | 895 } |
OLD | NEW |