| OLD | NEW |
| 1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2011 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 { | 9 { |
| 10 'includes': [ | 10 'includes': [ |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 }], | 55 }], |
| 56 ], | 56 ], |
| 57 }], | 57 }], |
| 58 ], | 58 ], |
| 59 }, | 59 }, |
| 60 ], # targets | 60 ], # targets |
| 61 'conditions': [ | 61 'conditions': [ |
| 62 ['include_tests==1', { | 62 ['include_tests==1', { |
| 63 'targets': [ | 63 'targets': [ |
| 64 { | 64 { |
| 65 'target_name': 'bwe_simulator', | |
| 66 'type': 'static_library', | |
| 67 'dependencies': [ | |
| 68 '<(webrtc_root)/modules/modules.gyp:paced_sender', | |
| 69 '<(webrtc_root)/test/test.gyp:test_support', | |
| 70 '<(DEPTH)/testing/gtest.gyp:gtest', | |
| 71 '<(DEPTH)/testing/gmock.gyp:gmock', | |
| 72 ], | |
| 73 'sources': [ | |
| 74 'bwe_simulations.cc', | |
| 75 'test/bwe.cc', | |
| 76 'test/bwe.h', | |
| 77 'test/bwe_test.cc', | |
| 78 'test/bwe_test.h', | |
| 79 'test/bwe_test_baselinefile.cc', | |
| 80 'test/bwe_test_baselinefile.h', | |
| 81 'test/bwe_test_fileutils.cc', | |
| 82 'test/bwe_test_fileutils.h', | |
| 83 'test/bwe_test_framework.cc', | |
| 84 'test/bwe_test_framework.h', | |
| 85 'test/bwe_test_logging.h', | |
| 86 'test/metric_recorder.cc', | |
| 87 'test/metric_recorder.h', | |
| 88 'test/packet_receiver.cc', | |
| 89 'test/packet_receiver.h', | |
| 90 'test/packet_sender.cc', | |
| 91 'test/packet_sender.h', | |
| 92 'test/packet.h', | |
| 93 'test/estimators/nada.cc', | |
| 94 'test/estimators/nada.h', | |
| 95 'test/estimators/remb.cc', | |
| 96 'test/estimators/remb.h', | |
| 97 'test/estimators/send_side.cc', | |
| 98 'test/estimators/send_side.h', | |
| 99 'test/estimators/tcp.cc', | |
| 100 'test/estimators/tcp.h', | |
| 101 ], | |
| 102 'conditions': [ | |
| 103 ['enable_bwe_test_logging==1', { | |
| 104 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1' ], | |
| 105 'sources': [ | |
| 106 'test/bwe_test_logging.cc' | |
| 107 ], | |
| 108 }, { | |
| 109 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0' ], | |
| 110 }], | |
| 111 ], | |
| 112 }, | |
| 113 { | |
| 114 'target_name': 'bwe_tools_util', | 65 'target_name': 'bwe_tools_util', |
| 115 'type': 'static_library', | 66 'type': 'static_library', |
| 116 'dependencies': [ | 67 'dependencies': [ |
| 117 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 68 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
| 118 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, | 69 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, |
| 119 'rtp_rtcp', | 70 'rtp_rtcp', |
| 120 ], | 71 ], |
| 121 'sources': [ | 72 'sources': [ |
| 122 'tools/bwe_rtp.cc', | 73 'tools/bwe_rtp.cc', |
| 123 'tools/bwe_rtp.h', | 74 'tools/bwe_rtp.h', |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 ], | 115 ], |
| 165 }, | 116 }, |
| 166 'sources': [ | 117 'sources': [ |
| 167 'tools/bwe_rtp_play.cc', | 118 'tools/bwe_rtp_play.cc', |
| 168 ], # source | 119 ], # source |
| 169 }, | 120 }, |
| 170 ], | 121 ], |
| 171 }], # include_tests==1 | 122 }], # include_tests==1 |
| 172 ], | 123 ], |
| 173 } | 124 } |
| OLD | NEW |