Audio indicator in each tab
[chromium-blink-merge.git] / ppapi / ppapi_host.gypi
bloba2afd580cdf278ac18bb24c0e29eab664561fb07
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.
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_ipc',
14         'ppapi_internal.gyp:ppapi_shared',
15         '../base/base.gyp:base',
16         '../ipc/ipc.gyp:ipc',
17         '../media/media.gyp:shared_memory_support',
18         '../ui/surface/surface.gyp:surface',
19       ],
20       'defines': [
21         'PPAPI_HOST_IMPLEMENTATION',
22       ],
23       'sources': [
24         'host/dispatch_host_message.h',
25         'host/host_factory.h',
26         'host/host_message_context.cc',
27         'host/host_message_context.h',
28         'host/message_filter_host.cc',
29         'host/message_filter_host.h',
30         'host/ppapi_host.cc',
31         'host/ppapi_host.h',
32         'host/ppapi_host_export.h',
33         'host/resource_host.cc',
34         'host/resource_host.h',
35         'host/resource_message_filter.cc',
36         'host/resource_message_filter.h',
37         'host/resource_message_handler.cc',
38         'host/resource_message_handler.h',
39       ],
40     },
41   ],