| 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 if (is_official_build) { | 812 deps += [ "//chrome:linux_symbols" ] |
| 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 } | |
| 818 | 813 |
| 819 if (!is_chromeos) { | 814 if (!is_chromeos) { |
| 820 deps += [ "//tools/perf/clear_system_cache" ] | 815 deps += [ "//tools/perf/clear_system_cache" ] |
| 821 } | 816 } |
| 822 } | 817 } |
| 823 | 818 |
| 824 if (is_win) { | 819 if (is_win) { |
| 825 deps += [ | 820 deps += [ |
| 826 "//content/shell:crash_service", | 821 "//content/shell:crash_service", |
| 827 # "//gpu:angle_perftests", TODO(GYP): crbug.com/537008 | 822 # "//gpu:angle_perftests", TODO(GYP): crbug.com/537008 |
| 828 ] | 823 ] |
| 829 | 824 |
| 830 if (target_cpu == "x86") { | 825 if (target_cpu == "x86") { |
| 831 deps += [ | 826 deps += [ |
| 832 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 | 827 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 |
| 833 ] | 828 ] |
| 834 } | 829 } |
| 835 } else { | 830 } else { |
| 836 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 831 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
| 837 } | 832 } |
| 838 } | 833 } |
| 839 } | 834 } |
| OLD | NEW |