| 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'ppapi_proxy', | 8 'target_name': 'ppapi_proxy', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 'proxy/host_dispatcher.cc', | 34 'proxy/host_dispatcher.cc', |
| 35 'proxy/host_dispatcher.h', | 35 'proxy/host_dispatcher.h', |
| 36 'proxy/host_var_serialization_rules.cc', | 36 'proxy/host_var_serialization_rules.cc', |
| 37 'proxy/host_var_serialization_rules.h', | 37 'proxy/host_var_serialization_rules.h', |
| 38 'proxy/interface_proxy.cc', | 38 'proxy/interface_proxy.cc', |
| 39 'proxy/interface_proxy.h', | 39 'proxy/interface_proxy.h', |
| 40 'proxy/plugin_dispatcher.cc', | 40 'proxy/plugin_dispatcher.cc', |
| 41 'proxy/plugin_dispatcher.h', | 41 'proxy/plugin_dispatcher.h', |
| 42 'proxy/plugin_message_filter.cc', | 42 'proxy/plugin_message_filter.cc', |
| 43 'proxy/plugin_message_filter.h', | 43 'proxy/plugin_message_filter.h', |
| 44 'proxy/plugin_resource.cc', | |
| 45 'proxy/plugin_resource.h', | |
| 46 'proxy/plugin_resource_tracker.cc', | 44 'proxy/plugin_resource_tracker.cc', |
| 47 'proxy/plugin_resource_tracker.h', | 45 'proxy/plugin_resource_tracker.h', |
| 48 'proxy/plugin_var_serialization_rules.cc', | 46 'proxy/plugin_var_serialization_rules.cc', |
| 49 'proxy/plugin_var_serialization_rules.h', | 47 'proxy/plugin_var_serialization_rules.h', |
| 50 'proxy/plugin_var_tracker.cc', | 48 'proxy/plugin_var_tracker.cc', |
| 51 'proxy/plugin_var_tracker.h', | 49 'proxy/plugin_var_tracker.h', |
| 52 'proxy/ppapi_messages.cc', | 50 'proxy/ppapi_messages.cc', |
| 53 'proxy/ppapi_messages.h', | 51 'proxy/ppapi_messages.h', |
| 54 'proxy/ppapi_param_traits.cc', | 52 'proxy/ppapi_param_traits.cc', |
| 55 'proxy/ppapi_param_traits.h', | 53 'proxy/ppapi_param_traits.h', |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 ['OS=="win"', { | 163 ['OS=="win"', { |
| 166 }], | 164 }], |
| 167 ['OS=="linux"', { | 165 ['OS=="linux"', { |
| 168 }], | 166 }], |
| 169 ['OS=="mac"', { | 167 ['OS=="mac"', { |
| 170 }] | 168 }] |
| 171 ], | 169 ], |
| 172 }, | 170 }, |
| 173 ], | 171 ], |
| 174 } | 172 } |
| OLD | NEW |