OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 # GN version: //remoting/client/plugin | |
9 'target_name': 'remoting_client_plugin', | |
10 'type': 'static_library', | |
11 'variables': { 'enable_wexit_time_destructors': 1, }, | |
12 'defines': [ | |
13 'HAVE_STDINT_H', # Required by on2_integer.h | |
14 ], | |
15 'dependencies': [ | |
16 '../net/net.gyp:net', | |
17 '../ppapi/ppapi.gyp:ppapi_cpp_objects', | |
18 '../ppapi/ppapi.gyp:ppapi_internal_module', | |
19 '../third_party/webrtc/modules/modules.gyp:desktop_capture', | |
20 '../ui/events/events.gyp:dom_keycode_converter', | |
21 'remoting_base', | |
22 'remoting_client', | |
23 'remoting_protocol', | |
24 ], | |
25 'sources': [ | |
26 '<@(remoting_client_plugin_sources)', | |
27 'client/plugin/pepper_entrypoints.cc', | |
28 'client/plugin/pepper_entrypoints.h', | |
29 ], | |
30 }, # end of target 'remoting_client_plugin' | |
31 | |
32 { | |
33 # GN version: //remoting/client | 8 # GN version: //remoting/client |
34 'target_name': 'remoting_client', | 9 'target_name': 'remoting_client', |
35 'type': 'static_library', | 10 'type': 'static_library', |
36 'variables': { 'enable_wexit_time_destructors': 1, }, | 11 'variables': { 'enable_wexit_time_destructors': 1, }, |
37 'defines': [ | 12 'defines': [ |
38 'VERSION=<(version_full)', | 13 'VERSION=<(version_full)', |
39 ], | 14 ], |
40 'dependencies': [ | 15 'dependencies': [ |
41 'remoting_base', | 16 'remoting_base', |
42 'remoting_protocol', | 17 'remoting_protocol', |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 ], | 183 ], |
209 }, | 184 }, |
210 }], | 185 }], |
211 ], | 186 ], |
212 'includes': [ 'remoting_webapp.gypi', ], | 187 'includes': [ 'remoting_webapp.gypi', ], |
213 }, # end of target 'remoting_webapp_v2' | 188 }, # end of target 'remoting_webapp_v2' |
214 ], | 189 ], |
215 }], | 190 }], |
216 ], | 191 ], |
217 } | 192 } |
OLD | NEW |