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

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

Issue 379283002: Rework UMAHistogramHelper and StatisticsDeltaReader into [Chrome]HistogramTester. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « base/base.gyp ('k') | base/test/histogram_tester.h » ('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 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/rules.gni") 8 import("//build/config/android/rules.gni")
9 } 9 }
10 10
11 source_set("test_support") { 11 source_set("test_support") {
12 sources = [ 12 sources = [
13 "expectations/expectation.cc", 13 "expectations/expectation.cc",
14 "expectations/expectation.h", 14 "expectations/expectation.h",
15 "expectations/parser.cc", 15 "expectations/parser.cc",
16 "expectations/parser.h", 16 "expectations/parser.h",
17 "gtest_xml_util.cc", 17 "gtest_xml_util.cc",
18 "gtest_xml_util.h", 18 "gtest_xml_util.h",
19 "histogram_tester.cc",
20 "histogram_tester.h",
19 "launcher/test_launcher.cc", 21 "launcher/test_launcher.cc",
20 "launcher/test_launcher.h", 22 "launcher/test_launcher.h",
21 "launcher/test_result.cc", 23 "launcher/test_result.cc",
22 "launcher/test_result.h", 24 "launcher/test_result.h",
23 "launcher/test_results_tracker.cc", 25 "launcher/test_results_tracker.cc",
24 "launcher/test_results_tracker.h", 26 "launcher/test_results_tracker.h",
25 "launcher/unit_test_launcher.cc", 27 "launcher/unit_test_launcher.cc",
26 "launcher/unit_test_launcher.h", 28 "launcher/unit_test_launcher.h",
27 "launcher/unit_test_launcher_ios.cc", 29 "launcher/unit_test_launcher_ios.cc",
28 "mock_chrome_application_mac.h", 30 "mock_chrome_application_mac.h",
(...skipping 20 matching lines...) Expand all
49 "scoped_path_override.cc", 51 "scoped_path_override.cc",
50 "scoped_path_override.h", 52 "scoped_path_override.h",
51 "sequenced_task_runner_test_template.cc", 53 "sequenced_task_runner_test_template.cc",
52 "sequenced_task_runner_test_template.h", 54 "sequenced_task_runner_test_template.h",
53 "sequenced_worker_pool_owner.cc", 55 "sequenced_worker_pool_owner.cc",
54 "sequenced_worker_pool_owner.h", 56 "sequenced_worker_pool_owner.h",
55 "simple_test_clock.cc", 57 "simple_test_clock.cc",
56 "simple_test_clock.h", 58 "simple_test_clock.h",
57 "simple_test_tick_clock.cc", 59 "simple_test_tick_clock.cc",
58 "simple_test_tick_clock.h", 60 "simple_test_tick_clock.h",
59 "statistics_delta_reader.cc",
60 "statistics_delta_reader.h",
61 "task_runner_test_template.cc", 61 "task_runner_test_template.cc",
62 "task_runner_test_template.h", 62 "task_runner_test_template.h",
63 "test_file_util.cc", 63 "test_file_util.cc",
64 "test_file_util.h", 64 "test_file_util.h",
65 "test_file_util_android.cc", 65 "test_file_util_android.cc",
66 "test_file_util_linux.cc", 66 "test_file_util_linux.cc",
67 "test_file_util_mac.cc", 67 "test_file_util_mac.cc",
68 "test_file_util_posix.cc", 68 "test_file_util_posix.cc",
69 "test_file_util_win.cc", 69 "test_file_util_win.cc",
70 "test_listener_ios.h", 70 "test_listener_ios.h",
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 } 154 }
155 155
156 if (is_android) { 156 if (is_android) {
157 generate_jni("base_unittests_jni_headers") { 157 generate_jni("base_unittests_jni_headers") {
158 sources = [ 158 sources = [
159 "android/java/src/org/chromium/base/ContentUriTestUtils.java", 159 "android/java/src/org/chromium/base/ContentUriTestUtils.java",
160 ] 160 ]
161 jni_package = "base" 161 jni_package = "base"
162 } 162 }
163 } 163 }
OLDNEW
« no previous file with comments | « base/base.gyp ('k') | base/test/histogram_tester.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698