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