| 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 'msvs_disable_precompiled_header': '1', |
| 10 'dependencies': [ | 11 'dependencies': [ |
| 11 '../ipc/ipc.gyp:ipc', | 12 '../ipc/ipc.gyp:ipc', |
| 12 '../gpu/gpu.gyp:gpu_ipc', | 13 '../gpu/gpu.gyp:gpu_ipc', |
| 13 '../skia/skia.gyp:skia', | 14 '../skia/skia.gyp:skia', |
| 14 '../ui/gfx/surface/surface.gyp:surface', | 15 '../ui/gfx/surface/surface.gyp:surface', |
| 15 'ppapi.gyp:ppapi_c', | 16 'ppapi.gyp:ppapi_c', |
| 16 'ppapi_shared', | 17 'ppapi_shared', |
| 17 ], | 18 ], |
| 18 'all_dependent_settings': { | 19 'all_dependent_settings': { |
| 19 'include_dirs': [ | 20 'include_dirs': [ |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 ['OS=="win"', { | 166 ['OS=="win"', { |
| 166 }], | 167 }], |
| 167 ['OS=="linux"', { | 168 ['OS=="linux"', { |
| 168 }], | 169 }], |
| 169 ['OS=="mac"', { | 170 ['OS=="mac"', { |
| 170 }] | 171 }] |
| 171 ], | 172 ], |
| 172 }, | 173 }, |
| 173 ], | 174 ], |
| 174 } | 175 } |
| OLD | NEW |