| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 'defines': [ | 69 'defines': [ |
| 70 'HAVE_STDINT_H', # Required by on2_integer.h | 70 'HAVE_STDINT_H', # Required by on2_integer.h |
| 71 ], | 71 ], |
| 72 'dependencies': [ | 72 'dependencies': [ |
| 73 'chromoting_base', | 73 'chromoting_base', |
| 74 'chromoting_client', | 74 'chromoting_client', |
| 75 'chromoting_jingle_glue', | 75 'chromoting_jingle_glue', |
| 76 '../third_party/ppapi/ppapi.gyp:ppapi_cpp_objects', | 76 '../third_party/ppapi/ppapi.gyp:ppapi_cpp_objects', |
| 77 ], | 77 ], |
| 78 'sources': [ | 78 'sources': [ |
| 79 'client/plugin/chromoting_plugin.cc', | 79 'client/plugin/chromoting_instance.cc', |
| 80 'client/plugin/chromoting_plugin.h', | 80 'client/plugin/chromoting_instance.h', |
| 81 'client/plugin/chromoting_scriptable_object.cc', | 81 'client/plugin/chromoting_scriptable_object.cc', |
| 82 'client/plugin/chromoting_scriptable_object.h', | 82 'client/plugin/chromoting_scriptable_object.h', |
| 83 'client/plugin/pepper_entrypoints.cc', | 83 'client/plugin/pepper_entrypoints.cc', |
| 84 'client/plugin/pepper_entrypoints.h', | 84 'client/plugin/pepper_entrypoints.h', |
| 85 'client/plugin/pepper_input_handler.cc', | 85 'client/plugin/pepper_input_handler.cc', |
| 86 'client/plugin/pepper_input_handler.h', | 86 'client/plugin/pepper_input_handler.h', |
| 87 'client/plugin/pepper_view.cc', | 87 'client/plugin/pepper_view.cc', |
| 88 'client/plugin/pepper_view.h', | 88 'client/plugin/pepper_view.h', |
| 89 'client/plugin/pepper_util.cc', | 89 'client/plugin/pepper_util.cc', |
| 90 'client/plugin/pepper_util.h', | 90 'client/plugin/pepper_util.h', |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 ], # end of 'conditions' | 405 ], # end of 'conditions' |
| 406 }, # end of target 'chromoting_unittests' | 406 }, # end of target 'chromoting_unittests' |
| 407 ], # end of targets | 407 ], # end of targets |
| 408 } | 408 } |
| 409 | 409 |
| 410 # Local Variables: | 410 # Local Variables: |
| 411 # tab-width:2 | 411 # tab-width:2 |
| 412 # indent-tabs-mode:nil | 412 # indent-tabs-mode:nil |
| 413 # End: | 413 # End: |
| 414 # vim: set expandtab tabstop=2 shiftwidth=2: | 414 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |