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

Unified Diff: remoting/client/plugin/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/client/BUILD.gn ('k') | remoting/proto/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/plugin/BUILD.gn
diff --git a/remoting/client/plugin/BUILD.gn b/remoting/client/plugin/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..a49048843c1efb7f23686ac2ce4c1927d45a503d
--- /dev/null
+++ b/remoting/client/plugin/BUILD.gn
@@ -0,0 +1,58 @@
+# 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.
+
+static_library("plugin") {
+ sources = [
+ "chromoting_instance.cc",
+ "chromoting_instance.h",
+ "delegating_signal_strategy.cc",
+ "delegating_signal_strategy.h",
+ "media_source_video_renderer.cc",
+ "media_source_video_renderer.h",
+ "normalizing_input_filter_cros.cc",
+ "normalizing_input_filter_cros.h",
+ "normalizing_input_filter_mac.cc",
+ "normalizing_input_filter_mac.h",
+ "pepper_address_resolver.cc",
+ "pepper_address_resolver.h",
+ "pepper_audio_player.cc",
+ "pepper_audio_player.h",
+ "pepper_input_handler.cc",
+ "pepper_input_handler.h",
+ "pepper_network_manager.cc",
+ "pepper_network_manager.h",
+ "pepper_packet_socket_factory.cc",
+ "pepper_packet_socket_factory.h",
+ "pepper_plugin_thread_delegate.cc",
+ "pepper_plugin_thread_delegate.h",
+ "pepper_port_allocator.cc",
+ "pepper_port_allocator.h",
+ "pepper_util.cc",
+ "pepper_util.h",
+ "pepper_view.cc",
+ "pepper_view.h",
+ ]
+
+ # TODO(brettw) when a nacl version of this target is made, these files
+ # won't be part of it.
+ sources += [
+ "pepper_entrypoints.cc",
+ "pepper_entrypoints.h",
+ ]
+
+ configs += [ "//build/config/compiler:wexit_time_destructors" ]
+
+ defines = [ "HAVE_STDINT_H" ] # Required by on2_integer.h.
+
+ deps = [
+ "//net",
+ "//ppapi:ppapi_cpp_objects",
+ "//ppapi:ppapi_internal_module",
+ "//remoting/base",
+ "//remoting/client",
+ "//remoting/protocol",
+ #"//third_party/webrtc/modules/desktop_capture", TODO(GYP)
+ "//ui/events:dom4_keycode_converter",
+ ]
+}
« no previous file with comments | « remoting/client/BUILD.gn ('k') | remoting/proto/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698