Index: remoting/client/BUILD.gn |
diff --git a/remoting/client/BUILD.gn b/remoting/client/BUILD.gn |
index 9f3e5c494e488a29d7801d556048c1be8b50f5a4..1d137cebc8a70f8dcb896db1fba71e402564de0c 100644 |
--- a/remoting/client/BUILD.gn |
+++ b/remoting/client/BUILD.gn |
@@ -61,6 +61,8 @@ static_library("client") { |
"//third_party/webrtc/modules/desktop_capture:primitives", |
] |
+ libs = [] |
+ |
if (is_nacl) { |
sources -= [ |
"client_status_logger.cc", |
@@ -73,6 +75,16 @@ static_library("client") { |
"chromoting_client_runtime.h", |
] |
} |
+ if (is_android) { |
+ sources += [ |
+ "audio_player_android.cc", |
+ "audio_player_android.h", |
+ ] |
+ libs += [ |
+ "android", |
+ "OpenSLES", |
+ ] |
+ } |
} |
source_set("unit_tests") { |