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

Unified Diff: remoting/remoting_client.gypi

Issue 139283010: Break some parts of remoting.gyp into separate .gypi files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add icudtl.dat (lost in merge) Created 6 years, 11 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/remoting.gyp ('k') | remoting/remoting_host.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/remoting_client.gypi
diff --git a/remoting/remoting_client.gypi b/remoting/remoting_client.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..0c4a130b0b21df99e2628764ea900299b85ddb90
--- /dev/null
+++ b/remoting/remoting_client.gypi
@@ -0,0 +1,120 @@
+# 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.
+
+{
+ 'variables': {
+ 'remoting_locales': [
Sergey Ulanov 2014/01/28 23:35:54 This is not used in this file and it's not client-
+ 'ar', 'bg', 'ca', 'cs', 'da', 'de', 'el', 'en', 'en-GB', 'es',
+ 'es-419', 'et', 'fi', 'fil', 'fr', 'he', 'hi', 'hr', 'hu', 'id',
+ 'it', 'ja', 'ko', 'lt', 'lv', 'nb', 'nl', 'pl', 'pt-BR', 'pt-PT',
+ 'ro', 'ru', 'sk', 'sl', 'sr', 'sv', 'th', 'tr', 'uk', 'vi',
+ 'zh-CN', 'zh-TW',
+ ],
+ 'remoting_locale_files': [
+ # Build the list of .pak files generated from remoting_strings.grd.
+ '<!@pymod_do_main(remoting_copy_locales -o -p <(OS) -x '
+ '<(PRODUCT_DIR) <(remoting_locales))',
+ ],
+ 'remoting_webapp_locale_files': [
+ # Build the list of .json files generated from remoting_strings.grd.
+ '<!@pymod_do_main(remoting_localize --locale_output '
+ '"<(webapp_locale_dir)/@{json_suffix}/messages.json" '
+ '--print_only <(remoting_locales))',
+ ],
+ },
+
+ 'targets': [
+ {
+ 'target_name': 'remoting_client_plugin',
+ 'type': 'static_library',
+ 'variables': { 'enable_wexit_time_destructors': 1, },
+ 'defines': [
+ 'HAVE_STDINT_H', # Required by on2_integer.h
+ ],
+ 'dependencies': [
+ '../net/net.gyp:net',
+ '../ppapi/ppapi.gyp:ppapi_cpp_objects',
+ '../third_party/webrtc/modules/modules.gyp:desktop_capture',
+ '../ui/events/events.gyp:dom4_keycode_converter',
+ 'remoting_base',
+ 'remoting_client',
+ 'remoting_protocol',
+ ],
+ 'sources': [
+ 'client/plugin/chromoting_instance.cc',
+ 'client/plugin/chromoting_instance.h',
+ 'client/plugin/delegating_signal_strategy.cc',
+ 'client/plugin/delegating_signal_strategy.h',
+ 'client/plugin/normalizing_input_filter.cc',
+ 'client/plugin/normalizing_input_filter.h',
+ 'client/plugin/normalizing_input_filter_cros.cc',
+ 'client/plugin/normalizing_input_filter_mac.cc',
+ 'client/plugin/pepper_audio_player.cc',
+ 'client/plugin/pepper_audio_player.h',
+ 'client/plugin/pepper_entrypoints.cc',
+ 'client/plugin/pepper_entrypoints.h',
+ 'client/plugin/pepper_input_handler.cc',
+ 'client/plugin/pepper_input_handler.h',
+ 'client/plugin/pepper_network_manager.cc',
+ 'client/plugin/pepper_network_manager.h',
+ 'client/plugin/pepper_packet_socket_factory.cc',
+ 'client/plugin/pepper_packet_socket_factory.h',
+ 'client/plugin/pepper_plugin_thread_delegate.cc',
+ 'client/plugin/pepper_plugin_thread_delegate.h',
+ 'client/plugin/pepper_port_allocator.cc',
+ 'client/plugin/pepper_port_allocator.h',
+ 'client/plugin/pepper_token_fetcher.cc',
+ 'client/plugin/pepper_token_fetcher.h',
+ 'client/plugin/pepper_util.cc',
+ 'client/plugin/pepper_util.h',
+ 'client/plugin/pepper_view.cc',
+ 'client/plugin/pepper_view.h',
+ ],
+ 'conditions' : [
+ [ 'chromeos==0', {
+ 'sources!': [
+ 'client/plugin/normalizing_input_filter_cros.cc',
+ ],
+ }],
+ ],
+ }, # end of target 'remoting_client_plugin'
+
+ {
+ 'target_name': 'remoting_client',
+ 'type': 'static_library',
+ 'variables': { 'enable_wexit_time_destructors': 1, },
+ 'dependencies': [
+ 'remoting_base',
+ 'remoting_protocol',
+ '../third_party/libyuv/libyuv.gyp:libyuv',
+ '../third_party/webrtc/modules/modules.gyp:desktop_capture',
+ ],
+ 'sources': [
+ 'client/audio_decode_scheduler.cc',
+ 'client/audio_decode_scheduler.h',
+ 'client/audio_player.cc',
+ 'client/audio_player.h',
+ 'client/chromoting_client.cc',
+ 'client/chromoting_client.h',
+ 'client/chromoting_stats.cc',
+ 'client/chromoting_stats.h',
+ 'client/client_config.cc',
+ 'client/client_config.h',
+ 'client/client_context.cc',
+ 'client/client_context.h',
+ 'client/client_user_interface.h',
+ 'client/frame_consumer.h',
+ 'client/frame_consumer_proxy.cc',
+ 'client/frame_consumer_proxy.h',
+ 'client/frame_producer.h',
+ 'client/key_event_mapper.cc',
+ 'client/key_event_mapper.h',
+ 'client/software_video_renderer.cc',
+ 'client/software_video_renderer.h',
+ 'client/video_renderer.h',
+ ],
+ }, # end of target 'remoting_client'
+
+ ], # end of targets
+}
« no previous file with comments | « remoting/remoting.gyp ('k') | remoting/remoting_host.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698