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

Side by Side Diff: chrome/test/BUILD.gn

Issue 2442663004: Adding isolate for cc_perftests and triggering job on FYI waterfall (Closed)
Patch Set: Removing arg 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/crypto.gni") 7 import("//build/config/crypto.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 2935 matching lines...) Expand 10 before | Expand all | Expand 10 after
2946 ] 2946 ]
2947 2947
2948 data = [ 2948 data = [
2949 # Needed for isolate script to execute. 2949 # Needed for isolate script to execute.
2950 "//testing/scripts/common.py", 2950 "//testing/scripts/common.py",
2951 "//testing/xvfb.py", 2951 "//testing/xvfb.py",
2952 "//testing/scripts/run_telemetry_benchmark_as_googletest.py", 2952 "//testing/scripts/run_telemetry_benchmark_as_googletest.py",
2953 ] 2953 ]
2954 } 2954 }
2955 2955
2956 group("cc_perftests") {
2957 testonly = true
2958 data_deps = [
2959 "//cc:cc_perftests",
2960 ]
2961
2962 data = [
2963 # Needed for isolate script to execute.
2964 "//testing/scripts/common.py",
2965 "//testing/xvfb.py",
2966 "//testing/scripts/run_gtest_perf_test.py",
2967 ]
2968 }
2969
2956 js2gtest("unit_tests_js") { 2970 js2gtest("unit_tests_js") {
2957 test_type = "unit" 2971 test_type = "unit"
2958 sources = [ 2972 sources = [
2959 "../browser/resources/google_now/background_unittest.gtestjs", 2973 "../browser/resources/google_now/background_unittest.gtestjs",
2960 "../browser/resources/google_now/cards_unittest.gtestjs", 2974 "../browser/resources/google_now/cards_unittest.gtestjs",
2961 "../browser/resources/google_now/utility_unittest.gtestjs", 2975 "../browser/resources/google_now/utility_unittest.gtestjs",
2962 "../browser/resources/md_downloads/action_service_unittest.gtestjs", 2976 "../browser/resources/md_downloads/action_service_unittest.gtestjs",
2963 "../browser/resources/print_preview/data/measurement_system_unittest.gtestjs ", 2977 "../browser/resources/print_preview/data/measurement_system_unittest.gtestjs ",
2964 "../browser/resources/print_preview/print_preview_utils_unittest.gtestjs", 2978 "../browser/resources/print_preview/print_preview_utils_unittest.gtestjs",
2965 "../renderer/resources/extensions/notifications_custom_bindings.gtestjs", 2979 "../renderer/resources/extensions/notifications_custom_bindings.gtestjs",
(...skipping 2060 matching lines...) Expand 10 before | Expand all | Expand 10 after
5026 "touch_hud", 5040 "touch_hud",
5027 "ui", 5041 "ui",
5028 ] 5042 ]
5029 5043
5030 if (is_linux && !is_android) { 5044 if (is_linux && !is_android) {
5031 deps += [ "//components/font_service:manifest" ] 5045 deps += [ "//components/font_service:manifest" ]
5032 packaged_services += [ "font_service" ] 5046 packaged_services += [ "font_service" ]
5033 } 5047 }
5034 } 5048 }
5035 } 5049 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698