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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 defines += [ "ENABLE_RTC_EVENT_LOG" ] | 326 defines += [ "ENABLE_RTC_EVENT_LOG" ] |
327 deps += [ ":rtc_event_log_proto" ] | 327 deps += [ ":rtc_event_log_proto" ] |
328 } | 328 } |
329 if (is_clang && !is_nacl) { | 329 if (is_clang && !is_nacl) { |
330 # Suppress warnings from Chrome's Clang plugins. | 330 # Suppress warnings from Chrome's Clang plugins. |
331 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 331 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
332 configs -= [ "//build/config/clang:find_bad_constructs" ] | 332 configs -= [ "//build/config/clang:find_bad_constructs" ] |
333 } | 333 } |
334 } | 334 } |
335 | 335 |
| 336 copy("rtp_analyzer, copy *py files to $root_build_dir") { |
| 337 sources = [ |
| 338 "//tools/py_event_log_analyzer/copy_files.py", |
| 339 "//tools/py_event_log_analyzer/misc.py", |
| 340 "//tools/py_event_log_analyzer/pb_parse.py", |
| 341 "//tools/py_event_log_analyzer/rtp_analyzer.py", |
| 342 ] |
| 343 outputs = [ |
| 344 "$root_build_dir/{{source_file_part}}", |
| 345 ] |
| 346 } |
| 347 |
336 if (rtc_enable_protobuf) { | 348 if (rtc_enable_protobuf) { |
337 source_set("rtc_event_log_parser") { | 349 source_set("rtc_event_log_parser") { |
338 sources = [ | 350 sources = [ |
339 "call/rtc_event_log_parser.cc", | 351 "call/rtc_event_log_parser.cc", |
340 "call/rtc_event_log_parser.h", | 352 "call/rtc_event_log_parser.h", |
341 ] | 353 ] |
342 | 354 |
343 configs += [ ":common_config" ] | 355 configs += [ ":common_config" ] |
344 public_configs = [ ":common_inherited_config" ] | 356 public_configs = [ ":common_inherited_config" ] |
345 | 357 |
(...skipping 13 matching lines...) Expand all Loading... |
359 if (use_libfuzzer || use_drfuzz) { | 371 if (use_libfuzzer || use_drfuzz) { |
360 # This target is only here for gn to discover fuzzer build targets under | 372 # This target is only here for gn to discover fuzzer build targets under |
361 # webrtc/test/fuzzers/. | 373 # webrtc/test/fuzzers/. |
362 group("webrtc_fuzzers_dummy") { | 374 group("webrtc_fuzzers_dummy") { |
363 testonly = true | 375 testonly = true |
364 deps = [ | 376 deps = [ |
365 "test/fuzzers:webrtc_fuzzer_main", | 377 "test/fuzzers:webrtc_fuzzer_main", |
366 ] | 378 ] |
367 } | 379 } |
368 } | 380 } |
OLD | NEW |