OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'targets': [ |
| 7 { |
| 8 'target_name': 'ppapi_host', |
| 9 'type': '<(component)', |
| 10 'dependencies': [ |
| 11 'ppapi.gyp:ppapi_c', |
| 12 'ppapi_internal.gyp:ppapi_proxy', |
| 13 'ppapi_internal.gyp:ppapi_shared', |
| 14 '../base/base.gyp:base', |
| 15 '../ipc/ipc.gyp:ipc', |
| 16 '../ui/surface/surface.gyp:surface', |
| 17 ], |
| 18 'defines': [ |
| 19 'PPAPI_HOST_IMPLEMENTATION', |
| 20 ], |
| 21 'sources': [ |
| 22 'host/host_factory.h', |
| 23 'host/host_message_context.h', |
| 24 'host/ppapi_host.cc', |
| 25 'host/ppapi_host.h', |
| 26 'host/ppapi_host_export.h', |
| 27 'host/resource_host.cc', |
| 28 'host/resource_host.h', |
| 29 ], |
| 30 }, |
| 31 ], |
| 32 } |
OLD | NEW |