| 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 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 10 'dependencies': [ | 11 'dependencies': [ |
| 11 '../base/base.gyp:base', | 12 '../base/base.gyp:base', |
| 12 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 13 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 13 '../gpu/gpu.gyp:gpu_ipc', | 14 '../gpu/gpu.gyp:gpu_ipc', |
| 14 '../ipc/ipc.gyp:ipc', | 15 '../ipc/ipc.gyp:ipc', |
| 15 '../skia/skia.gyp:skia', | 16 '../skia/skia.gyp:skia', |
| 16 '../ui/gfx/surface/surface.gyp:surface', | 17 '../ui/gfx/surface/surface.gyp:surface', |
| 17 'ppapi.gyp:ppapi_c', | 18 'ppapi.gyp:ppapi_c', |
| 18 'ppapi_shared', | 19 'ppapi_shared', |
| 19 ], | 20 ], |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 'proxy/serialized_var.cc', | 150 'proxy/serialized_var.cc', |
| 150 'proxy/serialized_var.h', | 151 'proxy/serialized_var.h', |
| 151 'proxy/var_serialization_rules.h', | 152 'proxy/var_serialization_rules.h', |
| 152 ], | 153 ], |
| 153 'defines': [ | 154 'defines': [ |
| 154 'PPAPI_PROXY_IMPLEMENTATION', | 155 'PPAPI_PROXY_IMPLEMENTATION', |
| 155 ], | 156 ], |
| 156 }, | 157 }, |
| 157 ], | 158 ], |
| 158 } | 159 } |
| OLD | NEW |