mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-28 16:26:10 +03:00
44 lines
915 B
Plaintext
44 lines
915 B
Plaintext
|
# Copyright 2017 The Chromium Authors. All rights reserved.
|
||
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
# found in the LICENSE file.
|
||
|
|
||
|
import("//build/config/chrome_build.gni")
|
||
|
import("//build/config/ios/rules.gni")
|
||
|
import("//remoting/build/config/remoting_build.gni")
|
||
|
|
||
|
source_set("audio") {
|
||
|
sources = [
|
||
|
"audio_playback_sink_ios.cc",
|
||
|
"audio_playback_sink_ios.h",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
"//base",
|
||
|
"//remoting/base",
|
||
|
"//remoting/client/audio",
|
||
|
]
|
||
|
|
||
|
public_deps = [
|
||
|
"//remoting/proto",
|
||
|
]
|
||
|
|
||
|
libs = [ "AudioToolbox.framework" ]
|
||
|
|
||
|
configs += [ "//build/config/compiler:enable_arc" ]
|
||
|
}
|
||
|
|
||
|
source_set("unit_tests") {
|
||
|
testonly = true
|
||
|
sources = [
|
||
|
"audio_playback_sink_ios_unittest.cc",
|
||
|
]
|
||
|
deps = [
|
||
|
":audio",
|
||
|
"//remoting/client/audio:test_support",
|
||
|
"//testing/gmock",
|
||
|
"//testing/gtest",
|
||
|
]
|
||
|
|
||
|
configs += [ "//build/config/compiler:enable_arc" ]
|
||
|
}
|