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): Rebase this to webrtc/build/common.gypi changes after r6330. | 9 # TODO(kjellander): Rebase this to webrtc/build/common.gypi changes after r6330. |
10 | 10 |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 "call/rtc_event_log.proto", | 253 "call/rtc_event_log.proto", |
254 ] | 254 ] |
255 proto_out_dir = "webrtc/call" | 255 proto_out_dir = "webrtc/call" |
256 } | 256 } |
257 } | 257 } |
258 | 258 |
259 source_set("rtc_event_log") { | 259 source_set("rtc_event_log") { |
260 sources = [ | 260 sources = [ |
261 "call/rtc_event_log.cc", | 261 "call/rtc_event_log.cc", |
262 "call/rtc_event_log.h", | 262 "call/rtc_event_log.h", |
| 263 "call/rtc_event_log_helper_thread.cc", |
| 264 "call/rtc_event_log_helper_thread.h", |
263 ] | 265 ] |
264 | 266 |
265 defines = [] | 267 defines = [] |
266 configs += [ ":common_config" ] | 268 configs += [ ":common_config" ] |
267 public_configs = [ ":common_inherited_config" ] | 269 public_configs = [ ":common_inherited_config" ] |
268 | 270 |
269 deps = [ | 271 deps = [ |
270 ":webrtc_common", | 272 ":webrtc_common", |
271 ] | 273 ] |
272 | 274 |
(...skipping 11 matching lines...) Expand all Loading... |
284 if (use_libfuzzer || use_drfuzz) { | 286 if (use_libfuzzer || use_drfuzz) { |
285 # This target is only here for gn to discover fuzzer build targets under | 287 # This target is only here for gn to discover fuzzer build targets under |
286 # webrtc/test/fuzzers/. | 288 # webrtc/test/fuzzers/. |
287 group("webrtc_fuzzers_dummy") { | 289 group("webrtc_fuzzers_dummy") { |
288 testonly = true | 290 testonly = true |
289 deps = [ | 291 deps = [ |
290 "test/fuzzers:webrtc_fuzzer_main", | 292 "test/fuzzers:webrtc_fuzzer_main", |
291 ] | 293 ] |
292 } | 294 } |
293 } | 295 } |
OLD | NEW |