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 811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
822 "//gpu:gpu_perftests", | 822 "//gpu:gpu_perftests", |
823 "//media:media_perftests", | 823 "//media:media_perftests", |
824 "//media/midi:midi_unittests", | 824 "//media/midi:midi_unittests", |
825 "//tools/telemetry:bitmaptools", | 825 "//tools/telemetry:bitmaptools", |
826 ] | 826 ] |
827 | 827 |
828 if (!is_chromeos) { | 828 if (!is_chromeos) { |
829 deps += [ "//chrome/test:performance_browser_tests" ] | 829 deps += [ "//chrome/test:performance_browser_tests" ] |
830 } | 830 } |
831 if (is_linux && !is_chromeos) { | 831 if (is_linux && !is_chromeos) { |
832 deps += [ "//chrome:linux_symbols" ] | 832 if (is_official_build) { |
| 833 # In GN builds, this is controlled by the 'linux_dump_symbols' |
| 834 # flag, which defaults to 1 for official builds. For now, |
| 835 # we skip the separate flag and just key off of is_official_build. |
| 836 deps += [ "//chrome:linux_symbols" ] |
| 837 } |
833 | 838 |
834 if (!is_chromeos) { | 839 if (!is_chromeos) { |
835 deps += [ "//tools/perf/clear_system_cache" ] | 840 deps += [ "//tools/perf/clear_system_cache" ] |
836 } | 841 } |
837 } | 842 } |
838 | 843 |
839 if (is_win) { | 844 if (is_win) { |
840 deps += [ | 845 deps += [ |
841 "//content/shell:crash_service", | 846 "//content/shell:crash_service", |
842 # "//gpu:angle_perftests", TODO(GYP): crbug.com/537008 | 847 # "//gpu:angle_perftests", TODO(GYP): crbug.com/537008 |
843 ] | 848 ] |
844 | 849 |
845 if (target_cpu == "x86") { | 850 if (target_cpu == "x86") { |
846 deps += [ | 851 deps += [ |
847 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 | 852 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 |
848 ] | 853 ] |
849 } | 854 } |
850 } else { | 855 } else { |
851 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 856 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
852 } | 857 } |
853 } | 858 } |
854 } | 859 } |
OLD | NEW |