Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(326)

Side by Side Diff: BUILD.gn

Issue 1460013003: Re-land "Flip 'Linux x64' bot on chromium waterfall to GN." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update perf_expectations again Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698