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

Side by Side Diff: BUILD.gn

Issue 2418983003: Tracing: Enable tracing_perftests on bots. (Closed)
Patch Set: Created 4 years, 2 months 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 | testing/buildbot/chromium.perf.json » ('j') | tools/perf/generate_perf_json.py » ('J')
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 950 matching lines...) Expand 10 before | Expand all | Expand 10 after
961 } 961 }
962 962
963 group("chromium_builder_perf") { 963 group("chromium_builder_perf") {
964 testonly = true 964 testonly = true
965 965
966 if (!is_ios && !is_android && !is_chromecast) { 966 if (!is_ios && !is_android && !is_chromecast) {
967 data_deps = [ 967 data_deps = [
968 "//cc:cc_perftests", 968 "//cc:cc_perftests",
969 "//chrome/test:load_library_perf_tests", 969 "//chrome/test:load_library_perf_tests",
970 "//chrome/test:telemetry_perf_tests", 970 "//chrome/test:telemetry_perf_tests",
971 "//components/tracing:tracing_perftests",
971 "//gpu:gpu_perftests", 972 "//gpu:gpu_perftests",
972 "//media:media_perftests", 973 "//media:media_perftests",
973 "//tools/perf/chrome_telemetry_build:telemetry_chrome_test", 974 "//tools/perf/chrome_telemetry_build:telemetry_chrome_test",
974 ] 975 ]
975 976
976 if (!is_chromeos) { 977 if (!is_chromeos) {
977 data_deps += [ "//chrome/test:performance_browser_tests" ] 978 data_deps += [ "//chrome/test:performance_browser_tests" ]
978 } 979 }
979 if (is_linux && !is_chromeos) { 980 if (is_linux && !is_chromeos) {
980 if (is_official_build) { 981 if (is_official_build) {
981 # In GN builds, this is controlled by the 'linux_dump_symbols' 982 # In GN builds, this is controlled by the 'linux_dump_symbols'
982 # flag, which defaults to 1 for official builds. For now, 983 # flag, which defaults to 1 for official builds. For now,
983 # we skip the separate flag and just key off of is_official_build. 984 # we skip the separate flag and just key off of is_official_build.
984 data_deps += [ "//chrome:linux_symbols" ] 985 data_deps += [ "//chrome:linux_symbols" ]
985 } 986 }
986 987
987 if (!is_chromeos) { 988 data_deps += [ "//tools/perf/clear_system_cache" ]
Primiano Tucci (use gerrit) 2016/10/14 14:03:45 Right this is a subset of the check above.
988 data_deps += [ "//tools/perf/clear_system_cache" ]
989 }
990 } 989 }
991 990
992 if (is_win) { 991 if (is_win) {
993 data_deps += [ 992 data_deps += [
994 "//chrome/installer/mini_installer:mini_installer", 993 "//chrome/installer/mini_installer:mini_installer",
995 "//third_party/angle/src/tests:angle_perftests", 994 "//third_party/angle/src/tests:angle_perftests",
996 ] 995 ]
997 } else { 996 } else {
998 data_deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] 997 data_deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
999 } 998 }
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
1155 "//ui/display:display_unittests", 1154 "//ui/display:display_unittests",
1156 "//ui/events:events_unittests", 1155 "//ui/events:events_unittests",
1157 "//ui/gfx:gfx_unittests", 1156 "//ui/gfx:gfx_unittests",
1158 "//ui/gl:gl_unittests", 1157 "//ui/gl:gl_unittests",
1159 "//ui/keyboard:keyboard_unittests", 1158 "//ui/keyboard:keyboard_unittests",
1160 "//ui/touch_selection:ui_touch_selection_unittests", 1159 "//ui/touch_selection:ui_touch_selection_unittests",
1161 "//url:url_unittests", 1160 "//url:url_unittests",
1162 ] 1161 ]
1163 } 1162 }
1164 } 1163 }
OLDNEW
« no previous file with comments | « no previous file | testing/buildbot/chromium.perf.json » ('j') | tools/perf/generate_perf_json.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698