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

Side by Side Diff: ppapi/ppapi_cpp.gypi

Issue 6882021: Wrap the p2p transport API in a compile time flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 8 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
OLDNEW
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
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
101 'c/dev/ppb_var_deprecated.h', 100 'c/dev/ppb_var_deprecated.h',
102 'c/dev/ppp_class_deprecated.h', 101 'c/dev/ppp_class_deprecated.h',
103 102
104 # Trusted interfaces. 103 # Trusted interfaces.
105 'c/trusted/ppb_audio_trusted.h', 104 'c/trusted/ppb_audio_trusted.h',
106 'c/trusted/ppb_image_data_trusted.h', 105 'c/trusted/ppb_image_data_trusted.h',
107 'c/trusted/ppb_broker_trusted.h', 106 'c/trusted/ppb_broker_trusted.h',
108 'c/trusted/ppb_url_loader_trusted.h', 107 'c/trusted/ppb_url_loader_trusted.h',
109 'c/trusted/ppp_broker.h', 108 'c/trusted/ppp_broker.h',
110 ], 109 ],
110 'conditions': [
111 ['p2p_apis==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
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 17 matching lines...) Expand all
224 }, 228 },
225 }, 229 },
226 }], 230 }],
227 ['OS=="linux"', { 231 ['OS=="linux"', {
228 'cflags': ['-Wextra', '-pedantic'], 232 'cflags': ['-Wextra', '-pedantic'],
229 }], 233 }],
230 ['OS=="mac"', { 234 ['OS=="mac"', {
231 'xcode_settings': { 235 'xcode_settings': {
232 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], 236 'WARNING_CFLAGS': ['-Wextra', '-pedantic'],
233 }, 237 },
234 }] 238 }],
239 ['p2p_apis==1', {
240 'sources': [
241 'cpp/dev/transport_dev.cc',
242 'cpp/dev/transport_dev.h',
243 ],
244 }],
235 ], 245 ],
236 }, 246 },
237 { 247 {
238 'target_name': 'ppapi_cpp', 248 'target_name': 'ppapi_cpp',
239 'type': 'static_library', 249 'type': 'static_library',
240 'dependencies': [ 250 'dependencies': [
241 'ppapi_c', 251 'ppapi_c',
242 'ppapi_cpp_objects', 252 'ppapi_cpp_objects',
243 ], 253 ],
244 'include_dirs': [ 254 'include_dirs': [
(...skipping 12 matching lines...) Expand all
257 }], 267 }],
258 ['OS=="mac"', { 268 ['OS=="mac"', {
259 'xcode_settings': { 269 'xcode_settings': {
260 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], 270 'WARNING_CFLAGS': ['-Wextra', '-pedantic'],
261 }, 271 },
262 }] 272 }]
263 ], 273 ],
264 }, 274 },
265 ], 275 ],
266 } 276 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698