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 'dependencies': [ | 10 'dependencies': [ |
11 '../base/base.gyp:base', | 11 '../base/base.gyp:base', |
12 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 12 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
13 '../gpu/gpu.gyp:gpu_ipc', | 13 '../gpu/gpu.gyp:gpu_ipc', |
14 '../ipc/ipc.gyp:ipc', | 14 '../ipc/ipc.gyp:ipc', |
15 '../skia/skia.gyp:skia', | 15 '../skia/skia.gyp:skia', |
16 '../ui/gfx/surface/surface.gyp:surface', | 16 '../ui/gfx/surface/surface.gyp:surface', |
17 'ppapi.gyp:ppapi_c', | 17 'ppapi.gyp:ppapi_c', |
18 'ppapi_shared', | 18 'ppapi_shared', |
19 ], | 19 ], |
20 'all_dependent_settings': { | 20 'all_dependent_settings': { |
21 'include_dirs': [ | 21 'include_dirs': [ |
22 '..', | 22 '..', |
23 ], | 23 ], |
24 }, | 24 }, |
25 'include_dirs': [ | 25 'include_dirs': [ |
26 '..', | 26 '..', |
27 '../..', # For nacl includes to work. | 27 '../..', # For nacl includes to work. |
28 ], | 28 ], |
29 'sources': [ | 29 'sources': [ |
30 'proxy/callback_tracker.cc', | |
31 'proxy/callback_tracker.h', | |
32 'proxy/broker_dispatcher.cc', | 30 'proxy/broker_dispatcher.cc', |
33 'proxy/broker_dispatcher.h', | 31 'proxy/broker_dispatcher.h', |
34 'proxy/dispatcher.cc', | 32 'proxy/dispatcher.cc', |
35 'proxy/dispatcher.h', | 33 'proxy/dispatcher.h', |
36 'proxy/enter_proxy.h', | 34 'proxy/enter_proxy.h', |
37 'proxy/host_dispatcher.cc', | 35 'proxy/host_dispatcher.cc', |
38 'proxy/host_dispatcher.h', | 36 'proxy/host_dispatcher.h', |
39 'proxy/host_var_serialization_rules.cc', | 37 'proxy/host_var_serialization_rules.cc', |
40 'proxy/host_var_serialization_rules.h', | 38 'proxy/host_var_serialization_rules.h', |
41 'proxy/interface_list.cc', | 39 'proxy/interface_list.cc', |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 'proxy/serialized_var.cc', | 149 'proxy/serialized_var.cc', |
152 'proxy/serialized_var.h', | 150 'proxy/serialized_var.h', |
153 'proxy/var_serialization_rules.h', | 151 'proxy/var_serialization_rules.h', |
154 ], | 152 ], |
155 'defines': [ | 153 'defines': [ |
156 'PPAPI_PROXY_IMPLEMENTATION', | 154 'PPAPI_PROXY_IMPLEMENTATION', |
157 ], | 155 ], |
158 }, | 156 }, |
159 ], | 157 ], |
160 } | 158 } |
OLD | NEW |