Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1755)

Side by Side Diff: webrtc/modules/audio_processing/test/conversational_speech/BUILD.gn

Issue 3007763002: Move array_view.h to webrtc/api/ (Closed)
Patch Set: rebase Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698