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

Side by Side Diff: BUILD.gn

Issue 2333123003: adding telemetry_perf_tests gn target to perf test build target. (Closed)
Patch Set: Created 4 years, 3 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 | no next file » | 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 920 matching lines...) Expand 10 before | Expand all | Expand 10 after
931 group("chromium_swarm_tests") { 931 group("chromium_swarm_tests") {
932 } 932 }
933 933
934 group("chromium_builder_perf") { 934 group("chromium_builder_perf") {
935 testonly = true 935 testonly = true
936 936
937 if (!is_ios && !is_android && !is_chromecast) { 937 if (!is_ios && !is_android && !is_chromecast) {
938 deps = [ 938 deps = [
939 "//cc:cc_perftests", 939 "//cc:cc_perftests",
940 "//chrome/test:load_library_perf_tests", 940 "//chrome/test:load_library_perf_tests",
941 "//chrome/test:telemetry_perf_tests",
941 "//gpu:gpu_perftests", 942 "//gpu:gpu_perftests",
942 "//media:media_perftests", 943 "//media:media_perftests",
943 "//tools/perf/chrome_telemetry_build:telemetry_chrome_test", 944 "//tools/perf/chrome_telemetry_build:telemetry_chrome_test",
944 ] 945 ]
945 946
946 if (!is_chromeos) { 947 if (!is_chromeos) {
947 deps += [ "//chrome/test:performance_browser_tests" ] 948 deps += [ "//chrome/test:performance_browser_tests" ]
948 } 949 }
949 if (is_linux && !is_chromeos) { 950 if (is_linux && !is_chromeos) {
950 if (is_official_build) { 951 if (is_official_build) {
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
1127 "//ui/display:display_unittests", 1128 "//ui/display:display_unittests",
1128 "//ui/events:events_unittests", 1129 "//ui/events:events_unittests",
1129 "//ui/gfx:gfx_unittests", 1130 "//ui/gfx:gfx_unittests",
1130 "//ui/gl:gl_unittests", 1131 "//ui/gl:gl_unittests",
1131 "//ui/keyboard:keyboard_unittests", 1132 "//ui/keyboard:keyboard_unittests",
1132 "//ui/touch_selection:ui_touch_selection_unittests", 1133 "//ui/touch_selection:ui_touch_selection_unittests",
1133 "//url:url_unittests", 1134 "//url:url_unittests",
1134 ] 1135 ]
1135 } 1136 }
1136 } 1137 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698