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