| 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 25 matching lines...) Expand all Loading... |
| 36 'remote_bitrate_estimator_single_stream.cc', | 36 'remote_bitrate_estimator_single_stream.cc', |
| 37 'remote_bitrate_estimator_single_stream.h', | 37 'remote_bitrate_estimator_single_stream.h', |
| 38 'remote_estimator_proxy.cc', | 38 'remote_estimator_proxy.cc', |
| 39 'remote_estimator_proxy.h', | 39 'remote_estimator_proxy.h', |
| 40 'send_time_history.cc', | 40 'send_time_history.cc', |
| 41 'transport_feedback_adapter.cc', | 41 'transport_feedback_adapter.cc', |
| 42 'transport_feedback_adapter.h', | 42 'transport_feedback_adapter.h', |
| 43 'test/bwe_test_logging.h', | 43 'test/bwe_test_logging.h', |
| 44 ], # source | 44 ], # source |
| 45 'conditions': [ | 45 'conditions': [ |
| 46 ['include_tests==0', { | 46 ['enable_bwe_test_logging==1', { |
| 47 'conditions': [ | 47 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1' ], |
| 48 ['enable_bwe_test_logging==1', { | 48 'sources': [ |
| 49 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1' ], | 49 'test/bwe_test_logging.cc' |
| 50 'sources': [ | |
| 51 'test/bwe_test_logging.cc' | |
| 52 ], | |
| 53 }, { | |
| 54 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0' ], | |
| 55 }], | |
| 56 ], | 50 ], |
| 51 }, { |
| 52 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0' ], |
| 57 }], | 53 }], |
| 58 ], | 54 ], |
| 59 }, | 55 }, |
| 60 ], # targets | 56 ], # targets |
| 61 'conditions': [ | 57 'conditions': [ |
| 62 ['include_tests==1', { | 58 ['include_tests==1', { |
| 63 'targets': [ | 59 'targets': [ |
| 64 { | 60 { |
| 65 'target_name': 'bwe_tools_util', | 61 'target_name': 'bwe_tools_util', |
| 66 'type': 'static_library', | 62 'type': 'static_library', |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 ], | 111 ], |
| 116 }, | 112 }, |
| 117 'sources': [ | 113 'sources': [ |
| 118 'tools/bwe_rtp_play.cc', | 114 'tools/bwe_rtp_play.cc', |
| 119 ], # source | 115 ], # source |
| 120 }, | 116 }, |
| 121 ], | 117 ], |
| 122 }], # include_tests==1 | 118 }], # include_tests==1 |
| 123 ], | 119 ], |
| 124 } | 120 } |
| OLD | NEW |