| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 | 9 |
| 10 'target_defaults': { | 10 'target_defaults': { |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 'sources': [ | 246 'sources': [ |
| 247 'client/chromoting_client.cc', | 247 'client/chromoting_client.cc', |
| 248 'client/chromoting_client.h', | 248 'client/chromoting_client.h', |
| 249 'client/chromoting_view.cc', | 249 'client/chromoting_view.cc', |
| 250 'client/chromoting_view.h', | 250 'client/chromoting_view.h', |
| 251 'client/client_config.h', | 251 'client/client_config.h', |
| 252 'client/client_context.cc', | 252 'client/client_context.cc', |
| 253 'client/client_context.h', | 253 'client/client_context.h', |
| 254 'client/client_util.cc', | 254 'client/client_util.cc', |
| 255 'client/client_util.h', | 255 'client/client_util.h', |
| 256 'client/frame_consumer.h', |
| 256 'client/host_connection.h', | 257 'client/host_connection.h', |
| 257 'client/input_handler.cc', | 258 'client/input_handler.cc', |
| 258 'client/input_handler.h', | 259 'client/input_handler.h', |
| 259 'client/jingle_host_connection.cc', | 260 'client/jingle_host_connection.cc', |
| 260 'client/jingle_host_connection.h', | 261 'client/jingle_host_connection.h', |
| 262 'client/rectangle_update_decoder.cc', |
| 263 'client/rectangle_update_decoder.h', |
| 261 ], | 264 ], |
| 262 }, # end of target 'chromoting_client' | 265 }, # end of target 'chromoting_client' |
| 263 | 266 |
| 264 { | 267 { |
| 265 'target_name': 'chromoting_simple_host', | 268 'target_name': 'chromoting_simple_host', |
| 266 'type': 'executable', | 269 'type': 'executable', |
| 267 'dependencies': [ | 270 'dependencies': [ |
| 268 'chromoting_base', | 271 'chromoting_base', |
| 269 'chromoting_host', | 272 'chromoting_host', |
| 270 'chromoting_jingle_glue', | 273 'chromoting_jingle_glue', |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 418 ], # end of 'conditions' | 421 ], # end of 'conditions' |
| 419 }, # end of target 'chromoting_unittests' | 422 }, # end of target 'chromoting_unittests' |
| 420 ], # end of targets | 423 ], # end of targets |
| 421 } | 424 } |
| 422 | 425 |
| 423 # Local Variables: | 426 # Local Variables: |
| 424 # tab-width:2 | 427 # tab-width:2 |
| 425 # indent-tabs-mode:nil | 428 # indent-tabs-mode:nil |
| 426 # End: | 429 # End: |
| 427 # vim: set expandtab tabstop=2 shiftwidth=2: | 430 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |