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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 "copyonwritebuffer.h", | 116 "copyonwritebuffer.h", |
117 "criticalsection.cc", | 117 "criticalsection.cc", |
118 "criticalsection.h", | 118 "criticalsection.h", |
119 "deprecation.h", | 119 "deprecation.h", |
120 "event.cc", | 120 "event.cc", |
121 "event.h", | 121 "event.h", |
122 "event_tracer.cc", | 122 "event_tracer.cc", |
123 "event_tracer.h", | 123 "event_tracer.h", |
124 "exp_filter.cc", | 124 "exp_filter.cc", |
125 "exp_filter.h", | 125 "exp_filter.h", |
| 126 "file.cc", |
| 127 "file.h", |
126 "location.cc", | 128 "location.cc", |
127 "location.h", | 129 "location.h", |
128 "md5.cc", | 130 "md5.cc", |
129 "md5.h", | 131 "md5.h", |
130 "md5digest.cc", | 132 "md5digest.cc", |
131 "md5digest.h", | 133 "md5digest.h", |
132 "mod_ops.h", | 134 "mod_ops.h", |
133 "onetimeevent.h", | 135 "onetimeevent.h", |
134 "optional.h", | 136 "optional.h", |
135 "platform_file.cc", | 137 "platform_file.cc", |
(...skipping 27 matching lines...) Expand all Loading... |
163 "thread_checker.h", | 165 "thread_checker.h", |
164 "thread_checker_impl.cc", | 166 "thread_checker_impl.cc", |
165 "thread_checker_impl.h", | 167 "thread_checker_impl.h", |
166 "timestampaligner.cc", | 168 "timestampaligner.cc", |
167 "timestampaligner.h", | 169 "timestampaligner.h", |
168 "timeutils.cc", | 170 "timeutils.cc", |
169 "timeutils.h", | 171 "timeutils.h", |
170 "trace_event.h", | 172 "trace_event.h", |
171 ] | 173 ] |
172 | 174 |
| 175 if (is_posix) { |
| 176 sources += [ "file_posix.cc" ] |
| 177 } |
| 178 |
| 179 if (is_win) { |
| 180 sources += [ "file_win.cc" ] |
| 181 } |
| 182 |
173 if (build_with_chromium) { | 183 if (build_with_chromium) { |
174 # Dependency on chromium's logging (in //base). | 184 # Dependency on chromium's logging (in //base). |
175 deps += [ "//base:base" ] | 185 deps += [ "//base:base" ] |
176 sources += [ | 186 sources += [ |
177 "../../webrtc_overrides/webrtc/base/logging.cc", | 187 "../../webrtc_overrides/webrtc/base/logging.cc", |
178 "../../webrtc_overrides/webrtc/base/logging.h", | 188 "../../webrtc_overrides/webrtc/base/logging.h", |
179 ] | 189 ] |
180 include_dirs = [ "../../webrtc_overrides" ] | 190 include_dirs = [ "../../webrtc_overrides" ] |
181 } else { | 191 } else { |
182 sources += [ | 192 sources += [ |
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
703 "java/src/org/webrtc/Logging.java", | 713 "java/src/org/webrtc/Logging.java", |
704 "java/src/org/webrtc/Size.java", | 714 "java/src/org/webrtc/Size.java", |
705 "java/src/org/webrtc/ThreadUtils.java", | 715 "java/src/org/webrtc/ThreadUtils.java", |
706 ] | 716 ] |
707 | 717 |
708 deps = [ | 718 deps = [ |
709 "//base:base_java", | 719 "//base:base_java", |
710 ] | 720 ] |
711 } | 721 } |
712 } | 722 } |
OLD | NEW |