| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 6 'variables': { |
| 7 # TODO(dmaclach): can we pick this up some other way? Right now it's | 7 # TODO(dmaclach): can we pick this up some other way? Right now it's |
| 8 # duplicated from chrome.gyp | 8 # duplicated from chrome.gyp |
| 9 'chromium_code': 1, | 9 'chromium_code': 1, |
| 10 | 10 |
| (...skipping 1164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1175 'base/rate_counter.cc', | 1175 'base/rate_counter.cc', |
| 1176 'base/rate_counter.h', | 1176 'base/rate_counter.h', |
| 1177 'base/running_average.cc', | 1177 'base/running_average.cc', |
| 1178 'base/running_average.h', | 1178 'base/running_average.h', |
| 1179 'base/stoppable.cc', | 1179 'base/stoppable.cc', |
| 1180 'base/stoppable.h', | 1180 'base/stoppable.h', |
| 1181 'base/util.cc', | 1181 'base/util.cc', |
| 1182 'base/util.h', | 1182 'base/util.h', |
| 1183 # TODO(kxing): Seperate the audio and video codec files into a separate | 1183 # TODO(kxing): Seperate the audio and video codec files into a separate |
| 1184 # target. | 1184 # target. |
| 1185 'codec/audio_decoder.cc', |
| 1186 'codec/audio_decoder.h', |
| 1187 'codec/audio_decoder_verbatim.cc', |
| 1188 'codec/audio_decoder_verbatim.h', |
| 1185 'codec/audio_encoder.h', | 1189 'codec/audio_encoder.h', |
| 1186 'codec/audio_encoder_verbatim.cc', | 1190 'codec/audio_encoder_verbatim.cc', |
| 1187 'codec/audio_encoder_verbatim.h', | 1191 'codec/audio_encoder_verbatim.h', |
| 1188 ], | 1192 ], |
| 1189 }, # end of target 'remoting_base' | 1193 }, # end of target 'remoting_base' |
| 1190 | 1194 |
| 1191 { | 1195 { |
| 1192 'target_name': 'remoting_host', | 1196 'target_name': 'remoting_host', |
| 1193 'type': 'static_library', | 1197 'type': 'static_library', |
| 1194 'variables': { 'enable_wexit_time_destructors': 1, }, | 1198 'variables': { 'enable_wexit_time_destructors': 1, }, |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1382 { | 1386 { |
| 1383 'target_name': 'remoting_client', | 1387 'target_name': 'remoting_client', |
| 1384 'type': 'static_library', | 1388 'type': 'static_library', |
| 1385 'variables': { 'enable_wexit_time_destructors': 1, }, | 1389 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 1386 'dependencies': [ | 1390 'dependencies': [ |
| 1387 'remoting_base', | 1391 'remoting_base', |
| 1388 'remoting_jingle_glue', | 1392 'remoting_jingle_glue', |
| 1389 'remoting_protocol', | 1393 'remoting_protocol', |
| 1390 ], | 1394 ], |
| 1391 'sources': [ | 1395 'sources': [ |
| 1396 'client/audio_decode_scheduler.cc', |
| 1397 'client/audio_decode_scheduler.h', |
| 1392 'client/audio_player.h', | 1398 'client/audio_player.h', |
| 1393 'client/chromoting_client.cc', | 1399 'client/chromoting_client.cc', |
| 1394 'client/chromoting_client.h', | 1400 'client/chromoting_client.h', |
| 1395 'client/chromoting_stats.cc', | 1401 'client/chromoting_stats.cc', |
| 1396 'client/chromoting_stats.h', | 1402 'client/chromoting_stats.h', |
| 1397 'client/client_config.cc', | 1403 'client/client_config.cc', |
| 1398 'client/client_config.h', | 1404 'client/client_config.h', |
| 1399 'client/client_context.cc', | 1405 'client/client_context.cc', |
| 1400 'client/client_context.h', | 1406 'client/client_context.h', |
| 1401 'client/client_user_interface.h', | 1407 'client/client_user_interface.h', |
| (...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1844 '../base/allocator/allocator.gyp:allocator', | 1850 '../base/allocator/allocator.gyp:allocator', |
| 1845 ], | 1851 ], |
| 1846 }, | 1852 }, |
| 1847 ], | 1853 ], |
| 1848 ], | 1854 ], |
| 1849 }], | 1855 }], |
| 1850 ], # end of 'conditions' | 1856 ], # end of 'conditions' |
| 1851 }, # end of target 'remoting_unittests' | 1857 }, # end of target 'remoting_unittests' |
| 1852 ], # end of targets | 1858 ], # end of targets |
| 1853 } | 1859 } |
| OLD | NEW |