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

Side by Side 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, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « remoting/remoting.gyp ('k') | remoting/remoting_host.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'remoting_locales': [
Sergey Ulanov 2014/01/28 23:35:54 This is not used in this file and it's not client-
8 'ar', 'bg', 'ca', 'cs', 'da', 'de', 'el', 'en', 'en-GB', 'es',
9 'es-419', 'et', 'fi', 'fil', 'fr', 'he', 'hi', 'hr', 'hu', 'id',
10 'it', 'ja', 'ko', 'lt', 'lv', 'nb', 'nl', 'pl', 'pt-BR', 'pt-PT',
11 'ro', 'ru', 'sk', 'sl', 'sr', 'sv', 'th', 'tr', 'uk', 'vi',
12 'zh-CN', 'zh-TW',
13 ],
14 'remoting_locale_files': [
15 # Build the list of .pak files generated from remoting_strings.grd.
16 '<!@pymod_do_main(remoting_copy_locales -o -p <(OS) -x '
17 '<(PRODUCT_DIR) <(remoting_locales))',
18 ],
19 'remoting_webapp_locale_files': [
20 # Build the list of .json files generated from remoting_strings.grd.
21 '<!@pymod_do_main(remoting_localize --locale_output '
22 '"<(webapp_locale_dir)/@{json_suffix}/messages.json" '
23 '--print_only <(remoting_locales))',
24 ],
25 },
26
27 'targets': [
28 {
29 'target_name': 'remoting_client_plugin',
30 'type': 'static_library',
31 'variables': { 'enable_wexit_time_destructors': 1, },
32 'defines': [
33 'HAVE_STDINT_H', # Required by on2_integer.h
34 ],
35 'dependencies': [
36 '../net/net.gyp:net',
37 '../ppapi/ppapi.gyp:ppapi_cpp_objects',
38 '../third_party/webrtc/modules/modules.gyp:desktop_capture',
39 '../ui/events/events.gyp:dom4_keycode_converter',
40 'remoting_base',
41 'remoting_client',
42 'remoting_protocol',
43 ],
44 'sources': [
45 'client/plugin/chromoting_instance.cc',
46 'client/plugin/chromoting_instance.h',
47 'client/plugin/delegating_signal_strategy.cc',
48 'client/plugin/delegating_signal_strategy.h',
49 'client/plugin/normalizing_input_filter.cc',
50 'client/plugin/normalizing_input_filter.h',
51 'client/plugin/normalizing_input_filter_cros.cc',
52 'client/plugin/normalizing_input_filter_mac.cc',
53 'client/plugin/pepper_audio_player.cc',
54 'client/plugin/pepper_audio_player.h',
55 'client/plugin/pepper_entrypoints.cc',
56 'client/plugin/pepper_entrypoints.h',
57 'client/plugin/pepper_input_handler.cc',
58 'client/plugin/pepper_input_handler.h',
59 'client/plugin/pepper_network_manager.cc',
60 'client/plugin/pepper_network_manager.h',
61 'client/plugin/pepper_packet_socket_factory.cc',
62 'client/plugin/pepper_packet_socket_factory.h',
63 'client/plugin/pepper_plugin_thread_delegate.cc',
64 'client/plugin/pepper_plugin_thread_delegate.h',
65 'client/plugin/pepper_port_allocator.cc',
66 'client/plugin/pepper_port_allocator.h',
67 'client/plugin/pepper_token_fetcher.cc',
68 'client/plugin/pepper_token_fetcher.h',
69 'client/plugin/pepper_util.cc',
70 'client/plugin/pepper_util.h',
71 'client/plugin/pepper_view.cc',
72 'client/plugin/pepper_view.h',
73 ],
74 'conditions' : [
75 [ 'chromeos==0', {
76 'sources!': [
77 'client/plugin/normalizing_input_filter_cros.cc',
78 ],
79 }],
80 ],
81 }, # end of target 'remoting_client_plugin'
82
83 {
84 'target_name': 'remoting_client',
85 'type': 'static_library',
86 'variables': { 'enable_wexit_time_destructors': 1, },
87 'dependencies': [
88 'remoting_base',
89 'remoting_protocol',
90 '../third_party/libyuv/libyuv.gyp:libyuv',
91 '../third_party/webrtc/modules/modules.gyp:desktop_capture',
92 ],
93 'sources': [
94 'client/audio_decode_scheduler.cc',
95 'client/audio_decode_scheduler.h',
96 'client/audio_player.cc',
97 'client/audio_player.h',
98 'client/chromoting_client.cc',
99 'client/chromoting_client.h',
100 'client/chromoting_stats.cc',
101 'client/chromoting_stats.h',
102 'client/client_config.cc',
103 'client/client_config.h',
104 'client/client_context.cc',
105 'client/client_context.h',
106 'client/client_user_interface.h',
107 'client/frame_consumer.h',
108 'client/frame_consumer_proxy.cc',
109 'client/frame_consumer_proxy.h',
110 'client/frame_producer.h',
111 'client/key_event_mapper.cc',
112 'client/key_event_mapper.h',
113 'client/software_video_renderer.cc',
114 'client/software_video_renderer.h',
115 'client/video_renderer.h',
116 ],
117 }, # end of target 'remoting_client'
118
119 ], # end of targets
120 }
OLDNEW
« 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