OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 # TODO(kjellander): Convert the rest of the test.gyp targets and put here. | 9 # TODO(kjellander): Convert the rest of the test.gyp targets and put here. |
10 | 10 |
(...skipping 16 matching lines...) Expand all Loading... |
27 deps = [ | 27 deps = [ |
28 "..:webrtc_common", | 28 "..:webrtc_common", |
29 "../system_wrappers", | 29 "../system_wrappers", |
30 "../system_wrappers:field_trial_default", | 30 "../system_wrappers:field_trial_default", |
31 ] | 31 ] |
32 | 32 |
33 configs += [ "..:common_config" ] | 33 configs += [ "..:common_config" ] |
34 public_configs = [ "..:common_inherited_config" ] | 34 public_configs = [ "..:common_inherited_config" ] |
35 } | 35 } |
36 | 36 |
37 source_set("histogram") { | |
38 sources = [ | |
39 "histogram.cc", | |
40 "histogram.h", | |
41 ] | |
42 | |
43 deps = [ | |
44 "..:webrtc_common", | |
45 "../system_wrappers", | |
46 ] | |
47 | |
48 configs += [ "..:common_config" ] | |
49 public_configs = [ "..:common_inherited_config" ] | |
50 } | |
51 | |
52 source_set("test_support") { | 37 source_set("test_support") { |
53 testonly = true | 38 testonly = true |
54 | 39 |
55 sources = [ | 40 sources = [ |
56 "testsupport/fileutils.cc", | 41 "testsupport/fileutils.cc", |
57 "testsupport/fileutils.h", | 42 "testsupport/fileutils.h", |
58 "testsupport/frame_reader.cc", | 43 "testsupport/frame_reader.cc", |
59 "testsupport/frame_reader.h", | 44 "testsupport/frame_reader.h", |
60 "testsupport/frame_writer.cc", | 45 "testsupport/frame_writer.cc", |
61 "testsupport/frame_writer.h", | 46 "testsupport/frame_writer.h", |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 testonly = true | 78 testonly = true |
94 | 79 |
95 sources = [ | 80 sources = [ |
96 "run_all_unittests.cc", | 81 "run_all_unittests.cc", |
97 "test_suite.cc", | 82 "test_suite.cc", |
98 "test_suite.h", | 83 "test_suite.h", |
99 ] | 84 ] |
100 | 85 |
101 deps = [ | 86 deps = [ |
102 ":field_trial", | 87 ":field_trial", |
103 ":histogram", | |
104 ":test_support", | 88 ":test_support", |
| 89 "../system_wrappers:metrics_default", |
105 "//testing/gmock", | 90 "//testing/gmock", |
106 "//testing/gtest", | 91 "//testing/gtest", |
107 "//third_party/gflags", | 92 "//third_party/gflags", |
108 ] | 93 ] |
109 | 94 |
110 configs += [ "..:common_config" ] | 95 configs += [ "..:common_config" ] |
111 public_configs = [ "..:common_inherited_config" ] | 96 public_configs = [ "..:common_inherited_config" ] |
112 } | 97 } |
OLD | NEW |