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

Unified Diff: remoting/codec/BUILD.gn

Issue 1312463005: Compile remoting client plugin with GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/client/plugin/BUILD.gn ('k') | remoting/protocol/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/codec/BUILD.gn
diff --git a/remoting/codec/BUILD.gn b/remoting/codec/BUILD.gn
index 26bf12bae8a786c3806c9b81f8cb4930451c514c..d08d83c385fcaf5b19de2ddd3c8ef4511c1f79e7 100644
--- a/remoting/codec/BUILD.gn
+++ b/remoting/codec/BUILD.gn
@@ -16,12 +16,32 @@ source_set("codec") {
"//media",
"//media:shared_memory_support",
"//remoting/proto",
- "//remoting/resources",
"//third_party/libvpx",
"//third_party/libyuv",
"//third_party/opus",
- "//third_party/webrtc/modules/desktop_capture",
+ "//third_party/webrtc/modules/desktop_capture:primitives",
]
+
+ if (is_nacl) {
+ deps -= [
+ "//media",
+ "//media:shared_memory_support",
+ ]
+ sources -= [
+ "audio_encoder.h",
+ "audio_encoder_opus.cc",
+ "audio_encoder_opus.h",
+ "audio_encoder_verbatim.cc",
+ "audio_encoder_verbatim.h",
+ "video_encoder.h",
+ "video_encoder_helper.cc",
+ "video_encoder_helper.h",
+ "video_encoder_verbatim.cc",
+ "video_encoder_verbatim.h",
+ "video_encoder_vpx.cc",
+ "video_encoder_vpx.h",
+ ]
+ }
}
source_set("unit_tests") {
« no previous file with comments | « remoting/client/plugin/BUILD.gn ('k') | remoting/protocol/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698