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

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

Issue 2112253002: Add basic tracing support to the gtest launcher (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sort Created 4 years, 5 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 | « base/base.gyp ('k') | base/test/launcher/test_launcher.cc » ('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 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//build/config/nacl/config.gni") 6 import("//build/config/nacl/config.gni")
7 7
8 if (is_android) { 8 if (is_android) {
9 import("//build/config/android/rules.gni") 9 import("//build/config/android/rules.gni")
10 } 10 }
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 "values_test_util.cc", 121 "values_test_util.cc",
122 "values_test_util.h", 122 "values_test_util.h",
123 ] 123 ]
124 124
125 if (is_ios) { 125 if (is_ios) {
126 sources += [ "launcher/unit_test_launcher_ios.cc" ] 126 sources += [ "launcher/unit_test_launcher_ios.cc" ]
127 } else if (!is_nacl_nonsfi) { 127 } else if (!is_nacl_nonsfi) {
128 sources += [ 128 sources += [
129 "launcher/test_launcher.cc", 129 "launcher/test_launcher.cc",
130 "launcher/test_launcher.h", 130 "launcher/test_launcher.h",
131 "launcher/test_launcher_tracer.cc",
132 "launcher/test_launcher_tracer.h",
131 "launcher/test_results_tracker.cc", 133 "launcher/test_results_tracker.cc",
132 "launcher/unit_test_launcher.cc", 134 "launcher/unit_test_launcher.cc",
133 "multiprocess_test.cc", 135 "multiprocess_test.cc",
134 "multiprocess_test_android.cc", 136 "multiprocess_test_android.cc",
135 ] 137 ]
136 } 138 }
137 139
138 configs += [ "//build/config:precompiled_headers" ] 140 configs += [ "//build/config:precompiled_headers" ]
139 141
140 data = [ 142 data = [
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 266
265 if (is_android) { 267 if (is_android) {
266 generate_jni("base_unittests_jni_headers") { 268 generate_jni("base_unittests_jni_headers") {
267 sources = [ 269 sources = [
268 "android/java/src/org/chromium/base/ContentUriTestUtils.java", 270 "android/java/src/org/chromium/base/ContentUriTestUtils.java",
269 "android/java/src/org/chromium/base/TestUiThread.java", 271 "android/java/src/org/chromium/base/TestUiThread.java",
270 ] 272 ]
271 jni_package = "base" 273 jni_package = "base"
272 } 274 }
273 } 275 }
OLDNEW
« no previous file with comments | « base/base.gyp ('k') | base/test/launcher/test_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698