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

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

Issue 702903004: Add chrome perf tests and sniffer to GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 7
8 # This target exists to reference other test executables to bring these files
9 # into the build.
10 group("test") {
11 testonly = true
12 deps = [
13 "//chrome/test/perf",
14 ]
15 }
16
8 # GYP version: chrome/chrome_tests_unit.gypi:test_support_common 17 # GYP version: chrome/chrome_tests_unit.gypi:test_support_common
9 source_set("test_support") { 18 source_set("test_support") {
10 defines = [] 19 defines = []
11 testonly = true 20 testonly = true
12 21
13 sources = [ 22 sources = [
14 "base/chrome_process_util.cc", 23 "base/chrome_process_util.cc",
15 "base/chrome_process_util.h", 24 "base/chrome_process_util.h",
16 "base/chrome_process_util_mac.cc", 25 "base/chrome_process_util_mac.cc",
17 "base/chrome_render_view_host_test_harness.cc", 26 "base/chrome_render_view_host_test_harness.cc",
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 ":test_support", 204 ":test_support",
196 "//base", 205 "//base",
197 "//chrome:resources", 206 "//chrome:resources",
198 "//chrome:strings", 207 "//chrome:strings",
199 "//chrome/browser", 208 "//chrome/browser",
200 "//chrome/common", 209 "//chrome/common",
201 "//mojo/edk/system", 210 "//mojo/edk/system",
202 "//mojo/environment:chromium", 211 "//mojo/environment:chromium",
203 ] 212 ]
204 } 213 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698