| 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 'target_name': 'remoting_client_plugin', | 8 'target_name': 'remoting_client_plugin', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'variables': { 'enable_wexit_time_destructors': 1, }, | 10 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 11 'defines': [ | 11 'defines': [ |
| 12 'HAVE_STDINT_H', # Required by on2_integer.h | 12 'HAVE_STDINT_H', # Required by on2_integer.h |
| 13 ], | 13 ], |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 '../net/net.gyp:net', | 15 '../net/net.gyp:net', |
| 16 '../ppapi/ppapi.gyp:ppapi_cpp_objects', | 16 '../ppapi/ppapi.gyp:ppapi_cpp_objects', |
| 17 '../third_party/webrtc/modules/modules.gyp:desktop_capture', | 17 '../third_party/webrtc/modules/modules.gyp:desktop_capture', |
| 18 '../ui/events/events.gyp:dom4_keycode_converter', | 18 '../ui/events/events.gyp:dom4_keycode_converter', |
| 19 'remoting_base', | 19 'remoting_base', |
| 20 'remoting_client', | 20 'remoting_client', |
| 21 'remoting_protocol', | 21 'remoting_protocol', |
| 22 ], | 22 ], |
| 23 'sources': [ | 23 'sources': [ |
| 24 '<@(remoting_client_plugin_sources)', | 24 '<@(remoting_client_plugin_sources)', |
| 25 'client/plugin/pepper_entrypoints.cc', | 25 'client/plugin/pepper_entrypoints.cc', |
| 26 'client/plugin/pepper_entrypoints.h', | 26 'client/plugin/pepper_entrypoints.h', |
| 27 ], | 27 ], |
| 28 'conditions' : [ | |
| 29 [ 'chromeos==0', { | |
| 30 'sources!': [ | |
| 31 'client/plugin/normalizing_input_filter_cros.cc', | |
| 32 ], | |
| 33 }], | |
| 34 ], | |
| 35 }, # end of target 'remoting_client_plugin' | 28 }, # end of target 'remoting_client_plugin' |
| 36 | 29 |
| 37 { | 30 { |
| 38 'target_name': 'remoting_client', | 31 'target_name': 'remoting_client', |
| 39 'type': 'static_library', | 32 'type': 'static_library', |
| 40 'variables': { 'enable_wexit_time_destructors': 1, }, | 33 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 41 'defines': [ | 34 'defines': [ |
| 42 'VERSION=<(version_full)', | 35 'VERSION=<(version_full)', |
| 43 ], | 36 ], |
| 44 'dependencies': [ | 37 'dependencies': [ |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 'extra_files': [ 'webapp/background.js' ], | 140 'extra_files': [ 'webapp/background.js' ], |
| 148 'webapp_type': 'v2_pnacl', | 141 'webapp_type': 'v2_pnacl', |
| 149 }, | 142 }, |
| 150 'includes': [ 'remoting_webapp.gypi', ], | 143 'includes': [ 'remoting_webapp.gypi', ], |
| 151 }, # end of target 'remoting_webapp_pnacl' | 144 }, # end of target 'remoting_webapp_pnacl' |
| 152 ], | 145 ], |
| 153 }], | 146 }], |
| 154 ], | 147 ], |
| 155 | 148 |
| 156 } | 149 } |
| OLD | NEW |