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

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: Ilya's initial comments Created 6 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 | Annotate | Revision Log
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/android/rules.gni") 5 import("//build/config/android/rules.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 7
8 source_set("test_support") { 8 source_set("test_support") {
9 sources = [ 9 sources = [
10 "expectations/expectation.cc", 10 "expectations/expectation.cc",
11 "expectations/expectation.h", 11 "expectations/expectation.h",
12 "expectations/parser.cc", 12 "expectations/parser.cc",
13 "expectations/parser.h", 13 "expectations/parser.h",
14 "gtest_xml_util.cc", 14 "gtest_xml_util.cc",
15 "gtest_xml_util.h", 15 "gtest_xml_util.h",
16 "histogram_tester.cc",
17 "histogram_tester.h",
16 "launcher/test_launcher.cc", 18 "launcher/test_launcher.cc",
17 "launcher/test_launcher.h", 19 "launcher/test_launcher.h",
18 "launcher/test_result.cc", 20 "launcher/test_result.cc",
19 "launcher/test_result.h", 21 "launcher/test_result.h",
20 "launcher/test_results_tracker.cc", 22 "launcher/test_results_tracker.cc",
21 "launcher/test_results_tracker.h", 23 "launcher/test_results_tracker.h",
22 "launcher/unit_test_launcher.cc", 24 "launcher/unit_test_launcher.cc",
23 "launcher/unit_test_launcher.h", 25 "launcher/unit_test_launcher.h",
24 "launcher/unit_test_launcher_ios.cc", 26 "launcher/unit_test_launcher_ios.cc",
25 "mock_chrome_application_mac.h", 27 "mock_chrome_application_mac.h",
(...skipping 20 matching lines...) Expand all
46 "scoped_path_override.cc", 48 "scoped_path_override.cc",
47 "scoped_path_override.h", 49 "scoped_path_override.h",
48 "sequenced_task_runner_test_template.cc", 50 "sequenced_task_runner_test_template.cc",
49 "sequenced_task_runner_test_template.h", 51 "sequenced_task_runner_test_template.h",
50 "sequenced_worker_pool_owner.cc", 52 "sequenced_worker_pool_owner.cc",
51 "sequenced_worker_pool_owner.h", 53 "sequenced_worker_pool_owner.h",
52 "simple_test_clock.cc", 54 "simple_test_clock.cc",
53 "simple_test_clock.h", 55 "simple_test_clock.h",
54 "simple_test_tick_clock.cc", 56 "simple_test_tick_clock.cc",
55 "simple_test_tick_clock.h", 57 "simple_test_tick_clock.h",
56 "statistics_delta_reader.cc",
57 "statistics_delta_reader.h",
58 "task_runner_test_template.cc", 58 "task_runner_test_template.cc",
59 "task_runner_test_template.h", 59 "task_runner_test_template.h",
60 "test_file_util.cc", 60 "test_file_util.cc",
61 "test_file_util.h", 61 "test_file_util.h",
62 "test_file_util_android.cc", 62 "test_file_util_android.cc",
63 "test_file_util_linux.cc", 63 "test_file_util_linux.cc",
64 "test_file_util_mac.cc", 64 "test_file_util_mac.cc",
65 "test_file_util_posix.cc", 65 "test_file_util_posix.cc",
66 "test_file_util_win.cc", 66 "test_file_util_win.cc",
67 "test_listener_ios.h", 67 "test_listener_ios.h",
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 } 151 }
152 152
153 if (is_android) { 153 if (is_android) {
154 generate_jni("base_unittests_jni_headers") { 154 generate_jni("base_unittests_jni_headers") {
155 sources = [ 155 sources = [
156 "android/java/src/org/chromium/base/ContentUriTestUtils.java", 156 "android/java/src/org/chromium/base/ContentUriTestUtils.java",
157 ] 157 ]
158 jni_package = "base" 158 jni_package = "base"
159 } 159 }
160 } 160 }
OLDNEW
« no previous file with comments | « base/base.gyp ('k') | base/test/histogram_tester.h » ('j') | base/test/histogram_tester.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698