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

Unified Diff: remoting/client/BUILD.gn

Issue 2745583008: Refactoring out the chromoting jni runtime class in favor of chromoting client runtime. (Closed)
Patch Set: Missed out on a () Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
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") {

Powered by Google App Engine
This is Rietveld 408576698