| 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, }, |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 'client/plugin/normalizing_input_filter_cros.cc', | 31 'client/plugin/normalizing_input_filter_cros.cc', |
| 32 ], | 32 ], |
| 33 }], | 33 }], |
| 34 ], | 34 ], |
| 35 }, # end of target 'remoting_client_plugin' | 35 }, # end of target 'remoting_client_plugin' |
| 36 | 36 |
| 37 { | 37 { |
| 38 'target_name': 'remoting_client', | 38 'target_name': 'remoting_client', |
| 39 'type': 'static_library', | 39 'type': 'static_library', |
| 40 'variables': { 'enable_wexit_time_destructors': 1, }, | 40 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 41 'defines': [ |
| 42 'VERSION=<(version_full)', |
| 43 ], |
| 41 'dependencies': [ | 44 'dependencies': [ |
| 42 'remoting_base', | 45 'remoting_base', |
| 43 'remoting_protocol', | 46 'remoting_protocol', |
| 44 '../third_party/libyuv/libyuv.gyp:libyuv', | 47 '../third_party/libyuv/libyuv.gyp:libyuv', |
| 45 '../third_party/webrtc/modules/modules.gyp:desktop_capture', | 48 '../third_party/webrtc/modules/modules.gyp:desktop_capture', |
| 46 '../third_party/libwebm/libwebm.gyp:libwebm', | 49 '../third_party/libwebm/libwebm.gyp:libwebm', |
| 47 ], | 50 ], |
| 48 'sources': [ | 51 'sources': [ |
| 49 '<@(remoting_client_sources)', | 52 '<@(remoting_client_sources)', |
| 50 ], | 53 ], |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 'variables': { | 121 'variables': { |
| 119 'webapp_type': 'v2', | 122 'webapp_type': 'v2', |
| 120 'output_dir': '<(PRODUCT_DIR)/remoting/remoting.webapp.v2', | 123 'output_dir': '<(PRODUCT_DIR)/remoting/remoting.webapp.v2', |
| 121 'zip_path': '<(PRODUCT_DIR)/remoting-webapp.v2.zip', | 124 'zip_path': '<(PRODUCT_DIR)/remoting-webapp.v2.zip', |
| 122 'extra_files': [ 'webapp/background.js' ], | 125 'extra_files': [ 'webapp/background.js' ], |
| 123 }, | 126 }, |
| 124 'includes': [ 'remoting_webapp.gypi', ], | 127 'includes': [ 'remoting_webapp.gypi', ], |
| 125 }, # end of target 'remoting_webapp_v2' | 128 }, # end of target 'remoting_webapp_v2' |
| 126 ], # end of targets | 129 ], # end of targets |
| 127 } | 130 } |
| OLD | NEW |