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 import("//build/config/crypto.gni") | 9 import("//build/config/crypto.gni") |
10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 "md5digest.cc", | 125 "md5digest.cc", |
126 "md5digest.h", | 126 "md5digest.h", |
127 "mod_ops.h", | 127 "mod_ops.h", |
128 "onetimeevent.h", | 128 "onetimeevent.h", |
129 "optional.h", | 129 "optional.h", |
130 "platform_file.cc", | 130 "platform_file.cc", |
131 "platform_file.h", | 131 "platform_file.h", |
132 "platform_thread.cc", | 132 "platform_thread.cc", |
133 "platform_thread.h", | 133 "platform_thread.h", |
134 "platform_thread_types.h", | 134 "platform_thread_types.h", |
| 135 "race_checker.cc", |
| 136 "race_checker.h", |
135 "random.cc", | 137 "random.cc", |
136 "random.h", | 138 "random.h", |
137 "rate_statistics.cc", | 139 "rate_statistics.cc", |
138 "rate_statistics.h", | 140 "rate_statistics.h", |
139 "ratetracker.cc", | 141 "ratetracker.cc", |
140 "ratetracker.h", | 142 "ratetracker.h", |
141 "refcount.h", | 143 "refcount.h", |
142 "safe_conversions.h", | 144 "safe_conversions.h", |
143 "safe_conversions_impl.h", | 145 "safe_conversions_impl.h", |
144 "scoped_ref_ptr.h", | 146 "scoped_ref_ptr.h", |
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
672 deps = [ | 674 deps = [ |
673 ":rtc_base", | 675 ":rtc_base", |
674 "../test:field_trial", | 676 "../test:field_trial", |
675 "../test:test_support", | 677 "../test:test_support", |
676 ] | 678 ] |
677 public_deps = [ | 679 public_deps = [ |
678 "//testing/gtest", | 680 "//testing/gtest", |
679 ] | 681 ] |
680 } | 682 } |
681 } | 683 } |
OLD | NEW |