| OLD | NEW |
| 1 # Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2017 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 import("../../../../../webrtc/webrtc.gni") | 9 import("../../../../../webrtc/webrtc.gni") |
| 10 | 10 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 "simulator.h", | 38 "simulator.h", |
| 39 "timing.cc", | 39 "timing.cc", |
| 40 "timing.h", | 40 "timing.h", |
| 41 "wavreader_abstract_factory.h", | 41 "wavreader_abstract_factory.h", |
| 42 "wavreader_factory.cc", | 42 "wavreader_factory.cc", |
| 43 "wavreader_factory.h", | 43 "wavreader_factory.h", |
| 44 "wavreader_interface.h", | 44 "wavreader_interface.h", |
| 45 ] | 45 ] |
| 46 deps = [ | 46 deps = [ |
| 47 "../../../..:webrtc_common", | 47 "../../../..:webrtc_common", |
| 48 "../../../../api:array_view", |
| 48 "../../../../common_audio", | 49 "../../../../common_audio", |
| 49 "../../../../rtc_base:rtc_base_approved", | 50 "../../../../rtc_base:rtc_base_approved", |
| 50 ] | 51 ] |
| 51 visibility = [ ":*" ] # Only targets in this file can depend on this. | 52 visibility = [ ":*" ] # Only targets in this file can depend on this. |
| 52 } | 53 } |
| 53 | 54 |
| 54 rtc_source_set("unittest") { | 55 rtc_source_set("unittest") { |
| 55 testonly = true | 56 testonly = true |
| 56 sources = [ | 57 sources = [ |
| 57 "generator_unittest.cc", | 58 "generator_unittest.cc", |
| 58 "mock_wavreader.cc", | 59 "mock_wavreader.cc", |
| 59 "mock_wavreader.h", | 60 "mock_wavreader.h", |
| 60 "mock_wavreader_factory.cc", | 61 "mock_wavreader_factory.cc", |
| 61 "mock_wavreader_factory.h", | 62 "mock_wavreader_factory.h", |
| 62 ] | 63 ] |
| 63 deps = [ | 64 deps = [ |
| 64 ":lib", | 65 ":lib", |
| 65 "../../../..:webrtc_common", | 66 "../../../..:webrtc_common", |
| 67 "../../../../api:array_view", |
| 66 "../../../../common_audio", | 68 "../../../../common_audio", |
| 67 "../../../../rtc_base:rtc_base_approved", | 69 "../../../../rtc_base:rtc_base_approved", |
| 68 "../../../../test:test_support", | 70 "../../../../test:test_support", |
| 69 "//testing/gmock", | 71 "//testing/gmock", |
| 70 "//testing/gtest", | 72 "//testing/gtest", |
| 71 ] | 73 ] |
| 72 } | 74 } |
| OLD | NEW |