| 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 ], # targets | 56 ], # targets |
| 57 'conditions': [ | 57 'conditions': [ |
| 58 ['include_tests==1', { | 58 ['include_tests==1', { |
| 59 'targets': [ | 59 'targets': [ |
| 60 { | 60 { |
| 61 'target_name': 'bwe_simulator', | 61 'target_name': 'bwe_simulator', |
| 62 'type': 'static_library', | 62 'type': 'static_library', |
| 63 'dependencies': [ | 63 'dependencies': [ |
| 64 '<(DEPTH)/testing/gtest.gyp:gtest', | 64 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 65 '<(DEPTH)/testing/gmock.gyp:gmock', |
| 65 ], | 66 ], |
| 66 'sources': [ | 67 'sources': [ |
| 67 'test/bwe.cc', | 68 'test/bwe.cc', |
| 68 'test/bwe.h', | 69 'test/bwe.h', |
| 69 'test/bwe_test.cc', | 70 'test/bwe_test.cc', |
| 70 'test/bwe_test.h', | 71 'test/bwe_test.h', |
| 71 'test/bwe_test_baselinefile.cc', | 72 'test/bwe_test_baselinefile.cc', |
| 72 'test/bwe_test_baselinefile.h', | 73 'test/bwe_test_baselinefile.h', |
| 73 'test/bwe_test_fileutils.cc', | 74 'test/bwe_test_fileutils.cc', |
| 74 'test/bwe_test_fileutils.h', | 75 'test/bwe_test_fileutils.h', |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 ], | 158 ], |
| 158 }, | 159 }, |
| 159 'sources': [ | 160 'sources': [ |
| 160 'tools/bwe_rtp_play.cc', | 161 'tools/bwe_rtp_play.cc', |
| 161 ], # source | 162 ], # source |
| 162 }, | 163 }, |
| 163 ], | 164 ], |
| 164 }], # include_tests==1 | 165 }], # include_tests==1 |
| 165 ], | 166 ], |
| 166 } | 167 } |
| OLD | NEW |