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

Side by Side Diff: ppapi/ppapi_cpp.gypi

Issue 8506016: Remove 'Flash' from TCP/UDP Pepper interfaces. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update Created 9 years, 1 month 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) 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_c', 8 'target_name': 'ppapi_c',
9 'type': 'none', 9 'type': 'none',
10 'all_dependent_settings': { 10 'all_dependent_settings': {
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 'c/private/ppb_flash_clipboard.h', 95 'c/private/ppb_flash_clipboard.h',
96 'c/private/ppb_flash_file.h', 96 'c/private/ppb_flash_file.h',
97 'c/private/ppb_flash_fullscreen.h', 97 'c/private/ppb_flash_fullscreen.h',
98 'c/private/ppb_flash_menu.h', 98 'c/private/ppb_flash_menu.h',
99 'c/private/ppb_flash_net_connector.h', 99 'c/private/ppb_flash_net_connector.h',
100 'c/private/ppb_flash_tcp_socket.h', 100 'c/private/ppb_flash_tcp_socket.h',
101 'c/private/ppb_flash_udp_socket.h', 101 'c/private/ppb_flash_udp_socket.h',
102 'c/private/ppb_gpu_blacklist_private.h', 102 'c/private/ppb_gpu_blacklist_private.h',
103 'c/private/ppb_instance_private.h', 103 'c/private/ppb_instance_private.h',
104 'c/private/ppb_nacl_private.h', 104 'c/private/ppb_nacl_private.h',
105 'c/private/ppb_net_address_private.h',
105 'c/private/ppb_pdf.h', 106 'c/private/ppb_pdf.h',
106 'c/private/ppb_proxy_private.h', 107 'c/private/ppb_proxy_private.h',
107 'c/private/ppp_instance_private.h', 108 'c/private/ppp_instance_private.h',
109 'c/private/ppb_tcp_socket_private.h',
110 'c/private/ppb_udp_socket_private.h',
108 111
109 # Deprecated interfaces. 112 # Deprecated interfaces.
110 'c/dev/deprecated_bool.h', 113 'c/dev/deprecated_bool.h',
111 'c/dev/ppb_var_deprecated.h', 114 'c/dev/ppb_var_deprecated.h',
112 'c/dev/ppp_class_deprecated.h', 115 'c/dev/ppp_class_deprecated.h',
113 116
114 # Trusted interfaces. 117 # Trusted interfaces.
115 'c/trusted/ppb_audio_trusted.h', 118 'c/trusted/ppb_audio_trusted.h',
116 'c/trusted/ppb_broker_trusted.h', 119 'c/trusted/ppb_broker_trusted.h',
117 'c/trusted/ppb_buffer_trusted.h', 120 'c/trusted/ppb_buffer_trusted.h',
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 'cpp/dev/scriptable_object_deprecated.h', 249 'cpp/dev/scriptable_object_deprecated.h',
247 'cpp/dev/scriptable_object_deprecated.cc', 250 'cpp/dev/scriptable_object_deprecated.cc',
248 251
249 # Private interfaces. 252 # Private interfaces.
250 'cpp/private/flash_fullscreen.cc', 253 'cpp/private/flash_fullscreen.cc',
251 'cpp/private/flash_fullscreen.h', 254 'cpp/private/flash_fullscreen.h',
252 'cpp/private/instance_private.cc', 255 'cpp/private/instance_private.cc',
253 'cpp/private/instance_private.h', 256 'cpp/private/instance_private.h',
254 'cpp/private/net_address_private.cc', 257 'cpp/private/net_address_private.cc',
255 'cpp/private/net_address_private.h', 258 'cpp/private/net_address_private.h',
259 'cpp/private/tcp_socket_private.cc',
260 'cpp/private/tcp_socket_private.h',
261 'cpp/private/udp_socket_private.cc',
262 'cpp/private/udp_socket_private.h',
256 'cpp/private/var_private.cc', 263 'cpp/private/var_private.cc',
257 'cpp/private/var_private.h', 264 'cpp/private/var_private.h',
258 265
259 # Trusted interfaces. 266 # Trusted interfaces.
260 'cpp/trusted/file_chooser_trusted.cc', 267 'cpp/trusted/file_chooser_trusted.cc',
261 'cpp/trusted/file_chooser_trusted.h', 268 'cpp/trusted/file_chooser_trusted.h',
262 ], 269 ],
263 'conditions': [ 270 'conditions': [
264 ['OS=="win"', { 271 ['OS=="win"', {
265 'msvs_settings': { 272 'msvs_settings': {
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 }], 311 }],
305 ['OS=="mac"', { 312 ['OS=="mac"', {
306 'xcode_settings': { 313 'xcode_settings': {
307 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], 314 'WARNING_CFLAGS': ['-Wextra', '-pedantic'],
308 }, 315 },
309 }] 316 }]
310 ], 317 ],
311 }, 318 },
312 ], 319 ],
313 } 320 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698