| 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'ppapi_shared_impl', | 8 'target_name': 'ppapi_shared_impl', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 'proxy/plugin_resource.cc', | 63 'proxy/plugin_resource.cc', |
| 64 'proxy/plugin_resource.h', | 64 'proxy/plugin_resource.h', |
| 65 'proxy/plugin_resource_tracker.cc', | 65 'proxy/plugin_resource_tracker.cc', |
| 66 'proxy/plugin_resource_tracker.h', | 66 'proxy/plugin_resource_tracker.h', |
| 67 'proxy/plugin_var_serialization_rules.cc', | 67 'proxy/plugin_var_serialization_rules.cc', |
| 68 'proxy/plugin_var_serialization_rules.h', | 68 'proxy/plugin_var_serialization_rules.h', |
| 69 'proxy/plugin_var_tracker.cc', | 69 'proxy/plugin_var_tracker.cc', |
| 70 'proxy/plugin_var_tracker.h', | 70 'proxy/plugin_var_tracker.h', |
| 71 'proxy/ppapi_messages.cc', | 71 'proxy/ppapi_messages.cc', |
| 72 'proxy/ppapi_messages.h', | 72 'proxy/ppapi_messages.h', |
| 73 'proxy/ppapi_messages_internal.h', | |
| 74 'proxy/ppapi_param_traits.cc', | 73 'proxy/ppapi_param_traits.cc', |
| 75 'proxy/ppapi_param_traits.h', | 74 'proxy/ppapi_param_traits.h', |
| 76 'proxy/ppb_audio_config_proxy.cc', | 75 'proxy/ppb_audio_config_proxy.cc', |
| 77 'proxy/ppb_audio_config_proxy.h', | 76 'proxy/ppb_audio_config_proxy.h', |
| 78 'proxy/ppb_audio_proxy.cc', | 77 'proxy/ppb_audio_proxy.cc', |
| 79 'proxy/ppb_audio_proxy.h', | 78 'proxy/ppb_audio_proxy.h', |
| 80 'proxy/ppb_buffer_proxy.cc', | 79 'proxy/ppb_buffer_proxy.cc', |
| 81 'proxy/ppb_buffer_proxy.h', | 80 'proxy/ppb_buffer_proxy.h', |
| 82 'proxy/ppb_char_set_proxy.cc', | 81 'proxy/ppb_char_set_proxy.cc', |
| 83 'proxy/ppb_char_set_proxy.h', | 82 'proxy/ppb_char_set_proxy.h', |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 ['OS=="win"', { | 148 ['OS=="win"', { |
| 150 }], | 149 }], |
| 151 ['OS=="linux"', { | 150 ['OS=="linux"', { |
| 152 }], | 151 }], |
| 153 ['OS=="mac"', { | 152 ['OS=="mac"', { |
| 154 }] | 153 }] |
| 155 ], | 154 ], |
| 156 }, | 155 }, |
| 157 ], | 156 ], |
| 158 } | 157 } |
| OLD | NEW |