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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 "template_util.h", | 165 "template_util.h", |
166 "thread_annotations.h", | 166 "thread_annotations.h", |
167 "thread_checker.h", | 167 "thread_checker.h", |
168 "thread_checker_impl.cc", | 168 "thread_checker_impl.cc", |
169 "thread_checker_impl.h", | 169 "thread_checker_impl.h", |
170 "timestampaligner.cc", | 170 "timestampaligner.cc", |
171 "timestampaligner.h", | 171 "timestampaligner.h", |
172 "timeutils.cc", | 172 "timeutils.cc", |
173 "timeutils.h", | 173 "timeutils.h", |
174 "trace_event.h", | 174 "trace_event.h", |
| 175 "type_traits.h", |
175 ] | 176 ] |
176 | 177 |
177 if (is_android) { | 178 if (is_android) { |
178 libs += [ "log" ] | 179 libs += [ "log" ] |
179 } | 180 } |
180 | 181 |
181 if (is_posix) { | 182 if (is_posix) { |
182 sources += [ "file_posix.cc" ] | 183 sources += [ "file_posix.cc" ] |
183 } | 184 } |
184 | 185 |
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
758 "java/src/org/webrtc/Logging.java", | 759 "java/src/org/webrtc/Logging.java", |
759 "java/src/org/webrtc/Size.java", | 760 "java/src/org/webrtc/Size.java", |
760 "java/src/org/webrtc/ThreadUtils.java", | 761 "java/src/org/webrtc/ThreadUtils.java", |
761 ] | 762 ] |
762 | 763 |
763 deps = [ | 764 deps = [ |
764 "//base:base_java", | 765 "//base:base_java", |
765 ] | 766 ] |
766 } | 767 } |
767 } | 768 } |
OLD | NEW |