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 791 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
802 "//gpu:gpu_perftests", | 802 "//gpu:gpu_perftests", |
803 "//media:media_perftests", | 803 "//media:media_perftests", |
804 "//media/midi:midi_unittests", | 804 "//media/midi:midi_unittests", |
805 "//tools/telemetry:bitmaptools", | 805 "//tools/telemetry:bitmaptools", |
806 ] | 806 ] |
807 | 807 |
808 if (!is_chromeos) { | 808 if (!is_chromeos) { |
809 deps += [ "//chrome/test:performance_browser_tests" ] | 809 deps += [ "//chrome/test:performance_browser_tests" ] |
810 } | 810 } |
811 if (is_linux && !is_chromeos) { | 811 if (is_linux && !is_chromeos) { |
812 deps += [ "//chrome:linux_symbols" ] | 812 if (is_official_build) { |
| 813 # In GN builds, this is controlled by the 'linux_dump_symbols' |
| 814 # flag, which defaults to 1 for official builds. For now, |
| 815 # we skip the separate flag and just key off of is_official_build. |
| 816 deps += [ "//chrome:linux_symbols" ] |
| 817 } |
813 | 818 |
814 if (!is_chromeos) { | 819 if (!is_chromeos) { |
815 deps += [ "//tools/perf/clear_system_cache" ] | 820 deps += [ "//tools/perf/clear_system_cache" ] |
816 } | 821 } |
817 } | 822 } |
818 | 823 |
819 if (is_win) { | 824 if (is_win) { |
820 deps += [ | 825 deps += [ |
821 "//content/shell:crash_service", | 826 "//content/shell:crash_service", |
822 # "//gpu:angle_perftests", TODO(GYP): crbug.com/537008 | 827 # "//gpu:angle_perftests", TODO(GYP): crbug.com/537008 |
823 ] | 828 ] |
824 | 829 |
825 if (target_cpu == "x86") { | 830 if (target_cpu == "x86") { |
826 deps += [ | 831 deps += [ |
827 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 | 832 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 |
828 ] | 833 ] |
829 } | 834 } |
830 } else { | 835 } else { |
831 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 836 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
832 } | 837 } |
833 } | 838 } |
834 } | 839 } |
OLD | NEW |