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

Unified Diff: remoting/client/BUILD.gn

Issue 498773005: Add some remoting targets to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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/base/BUILD.gn ('k') | remoting/client/plugin/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/BUILD.gn
diff --git a/remoting/client/BUILD.gn b/remoting/client/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..f944650f40fe013e1efe064050ff2be655dc9b53
--- /dev/null
+++ b/remoting/client/BUILD.gn
@@ -0,0 +1,50 @@
+# Copyright 2014 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("//remoting/remoting_version.gni")
+
+static_library("client") {
+ sources = [
+ "audio_decode_scheduler.cc",
+ "audio_decode_scheduler.h",
+ "audio_player.cc",
+ "audio_player.h",
+ "chromoting_client.cc",
+ "chromoting_client.h",
+ "chromoting_stats.cc",
+ "chromoting_stats.h",
+ "client_context.cc",
+ "client_context.h",
+ "client_status_logger.cc",
+ "client_status_logger.h",
+ "client_user_interface.h",
+ "frame_consumer.h",
+ "frame_consumer_proxy.cc",
+ "frame_consumer_proxy.h",
+ "frame_producer.h",
+ "key_event_mapper.cc",
+ "key_event_mapper.h",
+ "server_log_entry_client.cc",
+ "server_log_entry_client.h",
+ "software_video_renderer.cc",
+ "software_video_renderer.h",
+ "token_fetcher_proxy.cc",
+ "token_fetcher_proxy.h",
+ "video_renderer.h",
+ ]
+
+ configs += [ "//build/config/compiler:wexit_time_destructors" ]
+ # TODO(GYP) Remove when WebRTC is converted.
+ configs += [ "//content:webrtc_stub_config" ]
+
+ defines = [ "VERSION=$version_full" ]
+
+ deps = [
+ "//remoting/base",
+ "//remoting/protocol",
+ "//third_party/libyuv",
+ #"//third_party/webrtc/modules/desktop_capture", TODO(GYP)
+ "//third_party/libwebm",
+ ]
+}
« no previous file with comments | « remoting/base/BUILD.gn ('k') | remoting/client/plugin/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698