Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1827)

Side by Side Diff: ppapi/ppapi_shared_proxy.gypi

Issue 6265022: Break ppapi.gyp into several gypi's to reduce contention and allow projects t... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ppapi/ppapi_gl.gypi ('k') | ppapi/ppapi_tests.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 # Copyright (c) 2010 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_shared_impl',
9 'type': 'static_library',
10 'dependencies': [
11 'ppapi_c',
12 '../base/base.gyp:base',
13 ],
14 'include_dirs': [
15 '..',
16 ],
17 'sources': [
18 'shared_impl/audio_impl.cc',
19 'shared_impl/audio_impl.h',
20 'shared_impl/image_data_impl.cc',
21 'shared_impl/image_data_impl.h',
22 ],
23 'conditions': [
24 ['OS=="win"', {
25 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B',
26 }],
27 ],
28 },
29 {
30 'target_name': 'ppapi_proxy',
31 'type': 'static_library',
32 'dependencies': [
33 '../ipc/ipc.gyp:ipc',
34 'ppapi_c',
35 'ppapi_shared_impl',
36 ],
37 'all_dependent_settings': {
38 'include_dirs': [
39 '..',
40 ],
41 },
42 'include_dirs': [
43 '..',
44 '../..', # For nacl includes to work.
45 ],
46 'sources': [
47 'proxy/callback_tracker.cc',
48 'proxy/callback_tracker.h',
49 'proxy/dispatcher.cc',
50 'proxy/dispatcher.h',
51 'proxy/host_dispatcher.cc',
52 'proxy/host_dispatcher.h',
53 'proxy/host_var_serialization_rules.cc',
54 'proxy/host_var_serialization_rules.h',
55 'proxy/image_data.cc',
56 'proxy/image_data.h',
57 'proxy/interface_proxy.cc',
58 'proxy/interface_proxy.h',
59 'proxy/plugin_dispatcher.cc',
60 'proxy/plugin_dispatcher.h',
61 'proxy/plugin_resource.cc',
62 'proxy/plugin_resource.h',
63 'proxy/plugin_resource_tracker.cc',
64 'proxy/plugin_resource_tracker.h',
65 'proxy/plugin_var_serialization_rules.cc',
66 'proxy/plugin_var_serialization_rules.h',
67 'proxy/plugin_var_tracker.cc',
68 'proxy/plugin_var_tracker.h',
69 'proxy/ppapi_messages.cc',
70 'proxy/ppapi_messages.h',
71 'proxy/ppapi_messages_internal.h',
72 'proxy/ppapi_param_traits.cc',
73 'proxy/ppapi_param_traits.h',
74 'proxy/ppb_audio_config_proxy.cc',
75 'proxy/ppb_audio_config_proxy.h',
76 'proxy/ppb_audio_proxy.cc',
77 'proxy/ppb_audio_proxy.h',
78 'proxy/ppb_buffer_proxy.cc',
79 'proxy/ppb_buffer_proxy.h',
80 'proxy/ppb_char_set_proxy.cc',
81 'proxy/ppb_char_set_proxy.h',
82 'proxy/ppb_core_proxy.cc',
83 'proxy/ppb_core_proxy.h',
84 'proxy/ppb_cursor_control_proxy.cc',
85 'proxy/ppb_cursor_control_proxy.h',
86 'proxy/ppb_flash_proxy.cc',
87 'proxy/ppb_flash_proxy.h',
88 'proxy/ppb_font_proxy.cc',
89 'proxy/ppb_font_proxy.h',
90 'proxy/ppb_fullscreen_proxy.cc',
91 'proxy/ppb_fullscreen_proxy.h',
92 'proxy/ppb_graphics_2d_proxy.cc',
93 'proxy/ppb_graphics_2d_proxy.h',
94 'proxy/ppb_image_data_proxy.cc',
95 'proxy/ppb_image_data_proxy.h',
96 'proxy/ppb_instance_proxy.cc',
97 'proxy/ppb_instance_proxy.h',
98 'proxy/ppb_pdf_proxy.cc',
99 'proxy/ppb_pdf_proxy.h',
100 'proxy/ppb_testing_proxy.cc',
101 'proxy/ppb_testing_proxy.h',
102 'proxy/ppb_url_loader_proxy.cc',
103 'proxy/ppb_url_loader_proxy.h',
104 'proxy/ppb_url_request_info_proxy.cc',
105 'proxy/ppb_url_request_info_proxy.h',
106 'proxy/ppb_url_response_info_proxy.cc',
107 'proxy/ppb_url_response_info_proxy.h',
108 'proxy/ppb_var_deprecated_proxy.cc',
109 'proxy/ppb_var_deprecated_proxy.h',
110 'proxy/ppp_class_proxy.cc',
111 'proxy/ppp_class_proxy.h',
112 'proxy/ppp_instance_proxy.cc',
113 'proxy/ppp_instance_proxy.h',
114 'proxy/serialized_structs.cc',
115 'proxy/serialized_structs.h',
116 'proxy/serialized_var.cc',
117 'proxy/serialized_var.h',
118 'proxy/var_serialization_rules.h',
119 ],
120 'defines': [
121 ],
122 'conditions': [
123 ['OS=="win"', {
124 }],
125 ['OS=="linux"', {
126 }],
127 ['OS=="mac"', {
128 }]
129 ],
130 },
131 ],
132 }
OLDNEW
« no previous file with comments | « ppapi/ppapi_gl.gypi ('k') | ppapi/ppapi_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698