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 15 matching lines...) Expand all Loading... |
26 ], | 26 ], |
27 'sources': [ | 27 'sources': [ |
28 'proxy/callback_tracker.cc', | 28 'proxy/callback_tracker.cc', |
29 'proxy/callback_tracker.h', | 29 'proxy/callback_tracker.h', |
30 'proxy/broker_dispatcher.cc', | 30 'proxy/broker_dispatcher.cc', |
31 'proxy/broker_dispatcher.h', | 31 'proxy/broker_dispatcher.h', |
32 'proxy/dispatcher.cc', | 32 'proxy/dispatcher.cc', |
33 'proxy/dispatcher.h', | 33 'proxy/dispatcher.h', |
34 'proxy/host_dispatcher.cc', | 34 'proxy/host_dispatcher.cc', |
35 'proxy/host_dispatcher.h', | 35 'proxy/host_dispatcher.h', |
36 'proxy/host_resource.h', | |
37 'proxy/host_var_serialization_rules.cc', | 36 'proxy/host_var_serialization_rules.cc', |
38 'proxy/host_var_serialization_rules.h', | 37 'proxy/host_var_serialization_rules.h', |
39 'proxy/interface_proxy.cc', | 38 'proxy/interface_proxy.cc', |
40 'proxy/interface_proxy.h', | 39 'proxy/interface_proxy.h', |
41 'proxy/plugin_dispatcher.cc', | 40 'proxy/plugin_dispatcher.cc', |
42 'proxy/plugin_dispatcher.h', | 41 'proxy/plugin_dispatcher.h', |
43 'proxy/plugin_message_filter.cc', | 42 'proxy/plugin_message_filter.cc', |
44 'proxy/plugin_message_filter.h', | 43 'proxy/plugin_message_filter.h', |
45 'proxy/plugin_resource.cc', | 44 'proxy/plugin_resource.cc', |
46 'proxy/plugin_resource.h', | 45 'proxy/plugin_resource.h', |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 ['OS=="win"', { | 165 ['OS=="win"', { |
167 }], | 166 }], |
168 ['OS=="linux"', { | 167 ['OS=="linux"', { |
169 }], | 168 }], |
170 ['OS=="mac"', { | 169 ['OS=="mac"', { |
171 }] | 170 }] |
172 ], | 171 ], |
173 }, | 172 }, |
174 ], | 173 ], |
175 } | 174 } |
OLD | NEW |