| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'conditions': [ | 10 'conditions': [ |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 # depends on. See comments in chromoting_instance.cc for details. | 110 # depends on. See comments in chromoting_instance.cc for details. |
| 111 # crbug.com/74951 | 111 # crbug.com/74951 |
| 112 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', | 112 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', |
| 113 '<(DEPTH)/skia/skia.gyp:skia', | 113 '<(DEPTH)/skia/skia.gyp:skia', |
| 114 ], | 114 ], |
| 115 'sources': [ | 115 'sources': [ |
| 116 'client/plugin/chromoting_instance.cc', | 116 'client/plugin/chromoting_instance.cc', |
| 117 'client/plugin/chromoting_instance.h', | 117 'client/plugin/chromoting_instance.h', |
| 118 'client/plugin/chromoting_scriptable_object.cc', | 118 'client/plugin/chromoting_scriptable_object.cc', |
| 119 'client/plugin/chromoting_scriptable_object.h', | 119 'client/plugin/chromoting_scriptable_object.h', |
| 120 'client/plugin/pepper_client_logger.cc', |
| 121 'client/plugin/pepper_client_logger.h', |
| 120 'client/plugin/pepper_entrypoints.cc', | 122 'client/plugin/pepper_entrypoints.cc', |
| 121 'client/plugin/pepper_entrypoints.h', | 123 'client/plugin/pepper_entrypoints.h', |
| 122 'client/plugin/pepper_input_handler.cc', | 124 'client/plugin/pepper_input_handler.cc', |
| 123 'client/plugin/pepper_input_handler.h', | 125 'client/plugin/pepper_input_handler.h', |
| 124 'client/plugin/pepper_port_allocator_session.cc', | 126 'client/plugin/pepper_port_allocator_session.cc', |
| 125 'client/plugin/pepper_port_allocator_session.h', | 127 'client/plugin/pepper_port_allocator_session.h', |
| 126 'client/plugin/pepper_view.cc', | 128 'client/plugin/pepper_view.cc', |
| 127 'client/plugin/pepper_view.h', | 129 'client/plugin/pepper_view.h', |
| 128 'client/plugin/pepper_view_proxy.cc', | 130 'client/plugin/pepper_view_proxy.cc', |
| 129 'client/plugin/pepper_view_proxy.h', | 131 'client/plugin/pepper_view_proxy.h', |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 'client/chromoting_client.cc', | 385 'client/chromoting_client.cc', |
| 384 'client/chromoting_client.h', | 386 'client/chromoting_client.h', |
| 385 'client/chromoting_stats.cc', | 387 'client/chromoting_stats.cc', |
| 386 'client/chromoting_stats.h', | 388 'client/chromoting_stats.h', |
| 387 'client/chromoting_view.cc', | 389 'client/chromoting_view.cc', |
| 388 'client/chromoting_view.h', | 390 'client/chromoting_view.h', |
| 389 'client/client_config.cc', | 391 'client/client_config.cc', |
| 390 'client/client_config.h', | 392 'client/client_config.h', |
| 391 'client/client_context.cc', | 393 'client/client_context.cc', |
| 392 'client/client_context.h', | 394 'client/client_context.h', |
| 395 'client/client_logger.cc', |
| 396 'client/client_logger.h', |
| 393 'client/client_util.cc', | 397 'client/client_util.cc', |
| 394 'client/client_util.h', | 398 'client/client_util.h', |
| 395 'client/frame_consumer.h', | 399 'client/frame_consumer.h', |
| 396 'client/input_handler.cc', | 400 'client/input_handler.cc', |
| 397 'client/input_handler.h', | 401 'client/input_handler.h', |
| 398 'client/rectangle_update_decoder.cc', | 402 'client/rectangle_update_decoder.cc', |
| 399 'client/rectangle_update_decoder.h', | 403 'client/rectangle_update_decoder.h', |
| 400 ], | 404 ], |
| 401 }, # end of target 'remoting_client' | 405 }, # end of target 'remoting_client' |
| 402 | 406 |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 693 ], # end of 'conditions' | 697 ], # end of 'conditions' |
| 694 }, # end of target 'remoting_unittests' | 698 }, # end of target 'remoting_unittests' |
| 695 ], # end of targets | 699 ], # end of targets |
| 696 } | 700 } |
| 697 | 701 |
| 698 # Local Variables: | 702 # Local Variables: |
| 699 # tab-width:2 | 703 # tab-width:2 |
| 700 # indent-tabs-mode:nil | 704 # indent-tabs-mode:nil |
| 701 # End: | 705 # End: |
| 702 # vim: set expandtab tabstop=2 shiftwidth=2: | 706 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |