OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 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 | 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_c', | 8 'target_name': 'ppapi_c', |
9 'type': 'none', | 9 'type': 'none', |
10 'all_dependent_settings': { | 10 'all_dependent_settings': { |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 'c/dev/ppb_file_system_dev.h', | 62 'c/dev/ppb_file_system_dev.h', |
63 'c/dev/ppb_find_dev.h', | 63 'c/dev/ppb_find_dev.h', |
64 'c/dev/ppb_font_dev.h', | 64 'c/dev/ppb_font_dev.h', |
65 'c/dev/ppb_font_list_dev.h', | 65 'c/dev/ppb_font_list_dev.h', |
66 'c/dev/ppb_fullscreen_dev.h', | 66 'c/dev/ppb_fullscreen_dev.h', |
67 'c/dev/ppb_graphics_3d_dev.h', | 67 'c/dev/ppb_graphics_3d_dev.h', |
68 'c/dev/ppb_opengles_dev.h', | 68 'c/dev/ppb_opengles_dev.h', |
69 'c/dev/ppb_scrollbar_dev.h', | 69 'c/dev/ppb_scrollbar_dev.h', |
70 'c/dev/ppb_surface_3d_dev.h', | 70 'c/dev/ppb_surface_3d_dev.h', |
71 'c/dev/ppb_testing_dev.h', | 71 'c/dev/ppb_testing_dev.h', |
72 'c/dev/ppb_transport_dev.h', | |
73 'c/dev/ppb_url_util_dev.h', | 72 'c/dev/ppb_url_util_dev.h', |
74 'c/dev/ppb_video_decoder_dev.h', | 73 'c/dev/ppb_video_decoder_dev.h', |
75 'c/dev/ppb_widget_dev.h', | 74 'c/dev/ppb_widget_dev.h', |
76 'c/dev/ppb_zoom_dev.h', | 75 'c/dev/ppb_zoom_dev.h', |
77 'c/dev/ppp_cursor_control_dev.h', | 76 'c/dev/ppp_cursor_control_dev.h', |
78 'c/dev/ppp_find_dev.h', | 77 'c/dev/ppp_find_dev.h', |
79 'c/dev/ppp_graphics_3d_dev.h', | 78 'c/dev/ppp_graphics_3d_dev.h', |
80 'c/dev/ppp_scrollbar_dev.h', | 79 'c/dev/ppp_scrollbar_dev.h', |
81 'c/dev/ppp_selection_dev.h', | 80 'c/dev/ppp_selection_dev.h', |
82 'c/dev/ppp_printing_dev.h', | 81 'c/dev/ppp_printing_dev.h', |
(...skipping 18 matching lines...) Expand all Loading... |
101 | 100 |
102 # Trusted interfaces. | 101 # Trusted interfaces. |
103 'c/trusted/ppb_audio_trusted.h', | 102 'c/trusted/ppb_audio_trusted.h', |
104 'c/trusted/ppb_image_data_trusted.h', | 103 'c/trusted/ppb_image_data_trusted.h', |
105 'c/trusted/ppb_broker_trusted.h', | 104 'c/trusted/ppb_broker_trusted.h', |
106 'c/trusted/ppb_instance_trusted.h', | 105 'c/trusted/ppb_instance_trusted.h', |
107 'c/trusted/ppb_url_loader_trusted.h', | 106 'c/trusted/ppb_url_loader_trusted.h', |
108 'c/trusted/ppp_broker.h', | 107 'c/trusted/ppp_broker.h', |
109 'c/trusted/ppp_instance_trusted.h', | 108 'c/trusted/ppp_instance_trusted.h', |
110 ], | 109 ], |
| 110 'conditions': [ |
| 111 ['ppapi_transport==1', { |
| 112 'sources': [ |
| 113 'c/dev/ppb_transport_dev.h', |
| 114 ], |
| 115 }], |
| 116 ], |
111 }, | 117 }, |
112 { | 118 { |
113 'target_name': 'ppapi_cpp_objects', | 119 'target_name': 'ppapi_cpp_objects', |
114 'type': 'static_library', | 120 'type': 'static_library', |
115 'dependencies': [ | 121 'dependencies': [ |
116 'ppapi_c' | 122 'ppapi_c' |
117 ], | 123 ], |
118 'include_dirs': [ | 124 'include_dirs': [ |
119 '..', | 125 '..', |
120 ], | 126 ], |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 'cpp/dev/graphics_3d_dev.cc', | 191 'cpp/dev/graphics_3d_dev.cc', |
186 'cpp/dev/graphics_3d_dev.h', | 192 'cpp/dev/graphics_3d_dev.h', |
187 'cpp/dev/printing_dev.cc', | 193 'cpp/dev/printing_dev.cc', |
188 'cpp/dev/printing_dev.h', | 194 'cpp/dev/printing_dev.h', |
189 'cpp/dev/scrollbar_dev.cc', | 195 'cpp/dev/scrollbar_dev.cc', |
190 'cpp/dev/scrollbar_dev.h', | 196 'cpp/dev/scrollbar_dev.h', |
191 'cpp/dev/selection_dev.cc', | 197 'cpp/dev/selection_dev.cc', |
192 'cpp/dev/selection_dev.h', | 198 'cpp/dev/selection_dev.h', |
193 'cpp/dev/surface_3d_dev.cc', | 199 'cpp/dev/surface_3d_dev.cc', |
194 'cpp/dev/surface_3d_dev.h', | 200 'cpp/dev/surface_3d_dev.h', |
195 'cpp/dev/transport_dev.cc', | |
196 'cpp/dev/transport_dev.h', | |
197 'cpp/dev/url_util_dev.cc', | 201 'cpp/dev/url_util_dev.cc', |
198 'cpp/dev/url_util_dev.h', | 202 'cpp/dev/url_util_dev.h', |
199 'cpp/dev/video_decoder_dev.cc', | 203 'cpp/dev/video_decoder_dev.cc', |
200 'cpp/dev/video_decoder_dev.h', | 204 'cpp/dev/video_decoder_dev.h', |
201 'cpp/dev/widget_client_dev.cc', | 205 'cpp/dev/widget_client_dev.cc', |
202 'cpp/dev/widget_client_dev.h', | 206 'cpp/dev/widget_client_dev.h', |
203 'cpp/dev/widget_dev.cc', | 207 'cpp/dev/widget_dev.cc', |
204 'cpp/dev/widget_dev.h', | 208 'cpp/dev/widget_dev.h', |
205 'cpp/dev/zoom_dev.cc', | 209 'cpp/dev/zoom_dev.cc', |
206 'cpp/dev/zoom_dev.h', | 210 'cpp/dev/zoom_dev.h', |
(...skipping 15 matching lines...) Expand all Loading... |
222 }, | 226 }, |
223 }, | 227 }, |
224 }], | 228 }], |
225 ['OS=="linux"', { | 229 ['OS=="linux"', { |
226 'cflags': ['-Wextra', '-pedantic'], | 230 'cflags': ['-Wextra', '-pedantic'], |
227 }], | 231 }], |
228 ['OS=="mac"', { | 232 ['OS=="mac"', { |
229 'xcode_settings': { | 233 'xcode_settings': { |
230 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], | 234 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], |
231 }, | 235 }, |
232 }] | 236 }], |
| 237 ['ppapi_transport==1', { |
| 238 'sources': [ |
| 239 'cpp/dev/transport_dev.cc', |
| 240 'cpp/dev/transport_dev.h', |
| 241 ], |
| 242 }], |
233 ], | 243 ], |
234 }, | 244 }, |
235 { | 245 { |
236 'target_name': 'ppapi_cpp', | 246 'target_name': 'ppapi_cpp', |
237 'type': 'static_library', | 247 'type': 'static_library', |
238 'dependencies': [ | 248 'dependencies': [ |
239 'ppapi_c', | 249 'ppapi_c', |
240 'ppapi_cpp_objects', | 250 'ppapi_cpp_objects', |
241 ], | 251 ], |
242 'include_dirs': [ | 252 'include_dirs': [ |
(...skipping 12 matching lines...) Expand all Loading... |
255 }], | 265 }], |
256 ['OS=="mac"', { | 266 ['OS=="mac"', { |
257 'xcode_settings': { | 267 'xcode_settings': { |
258 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], | 268 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], |
259 }, | 269 }, |
260 }] | 270 }] |
261 ], | 271 ], |
262 }, | 272 }, |
263 ], | 273 ], |
264 } | 274 } |
OLD | NEW |