• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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        '../base/base.gyp:base',
12        '../ipc/ipc.gyp:ipc',
13        '../media/media.gyp:shared_memory_support',
14        '../ui/surface/surface.gyp:surface',
15        '../url/url.gyp:url_lib',
16        'ppapi.gyp:ppapi_c',
17        'ppapi_internal.gyp:ppapi_ipc',
18        'ppapi_internal.gyp:ppapi_proxy',
19        'ppapi_internal.gyp:ppapi_shared',
20      ],
21      'defines': [
22        'PPAPI_HOST_IMPLEMENTATION',
23      ],
24      'sources': [
25        'host/dispatch_host_message.h',
26        'host/error_conversion.cc',
27        'host/error_conversion.h',
28        'host/host_factory.h',
29        'host/host_message_context.cc',
30        'host/host_message_context.h',
31        'host/instance_message_filter.cc',
32        'host/instance_message_filter.h',
33        'host/message_filter_host.cc',
34        'host/message_filter_host.h',
35        'host/ppapi_host.cc',
36        'host/ppapi_host.h',
37        'host/ppapi_host_export.h',
38        'host/resource_host.cc',
39        'host/resource_host.h',
40        'host/resource_message_filter.cc',
41        'host/resource_message_filter.h',
42        'host/resource_message_handler.cc',
43        'host/resource_message_handler.h',
44      ],
45    },
46  ],
47}
48