| 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': '<(component)', | 9 'type': '<(component)', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| 11 '../base/base.gyp:base', | 11 '../base/base.gyp:base', |
| 12 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 12 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 13 '../gpu/gpu.gyp:gpu_ipc', | 13 '../gpu/gpu.gyp:gpu_ipc', |
| 14 '../ipc/ipc.gyp:ipc', | 14 '../ipc/ipc.gyp:ipc', |
| 15 '../skia/skia.gyp:skia', | 15 '../skia/skia.gyp:skia', |
| 16 '../ui/gfx/surface/surface.gyp:surface', | 16 '../ui/gfx/surface/surface.gyp:surface', |
| 17 'ppapi.gyp:ppapi_c', | 17 'ppapi.gyp:ppapi_c', |
| 18 'ppapi_shared', | 18 'ppapi_shared', |
| 19 ], | 19 ], |
| 20 'all_dependent_settings': { | 20 'all_dependent_settings': { |
| 21 'include_dirs': [ | 21 'include_dirs': [ |
| 22 '..', | 22 '..', |
| 23 ], | 23 ], |
| 24 }, | 24 }, |
| 25 'include_dirs': [ | 25 'include_dirs': [ |
| 26 '..', | 26 '..', |
| 27 '../..', # For nacl includes to work. | 27 '../..', # For nacl includes to work. |
| 28 ], | 28 ], |
| 29 'sources': [ | 29 'sources': [ |
| 30 'proxy/callback_tracker.cc', |
| 31 'proxy/callback_tracker.h', |
| 30 'proxy/broker_dispatcher.cc', | 32 'proxy/broker_dispatcher.cc', |
| 31 'proxy/broker_dispatcher.h', | 33 'proxy/broker_dispatcher.h', |
| 32 'proxy/dispatcher.cc', | 34 'proxy/dispatcher.cc', |
| 33 'proxy/dispatcher.h', | 35 'proxy/dispatcher.h', |
| 34 'proxy/enter_proxy.h', | 36 'proxy/enter_proxy.h', |
| 35 'proxy/host_dispatcher.cc', | 37 'proxy/host_dispatcher.cc', |
| 36 'proxy/host_dispatcher.h', | 38 'proxy/host_dispatcher.h', |
| 37 'proxy/host_var_serialization_rules.cc', | 39 'proxy/host_var_serialization_rules.cc', |
| 38 'proxy/host_var_serialization_rules.h', | 40 'proxy/host_var_serialization_rules.h', |
| 39 'proxy/interface_list.cc', | 41 'proxy/interface_list.cc', |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 'proxy/serialized_var.cc', | 151 'proxy/serialized_var.cc', |
| 150 'proxy/serialized_var.h', | 152 'proxy/serialized_var.h', |
| 151 'proxy/var_serialization_rules.h', | 153 'proxy/var_serialization_rules.h', |
| 152 ], | 154 ], |
| 153 'defines': [ | 155 'defines': [ |
| 154 'PPAPI_PROXY_IMPLEMENTATION', | 156 'PPAPI_PROXY_IMPLEMENTATION', |
| 155 ], | 157 ], |
| 156 }, | 158 }, |
| 157 ], | 159 ], |
| 158 } | 160 } |
| OLD | NEW |