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