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

Side by Side Diff: ppapi/ppapi_cpp.gypi

Issue 8511032: Make the Pepper Flash net address just private, not Flash-specific. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 243
244 # Deprecated interfaces. 244 # Deprecated interfaces.
245 'cpp/dev/scriptable_object_deprecated.h', 245 'cpp/dev/scriptable_object_deprecated.h',
246 'cpp/dev/scriptable_object_deprecated.cc', 246 'cpp/dev/scriptable_object_deprecated.cc',
247 247
248 # Private interfaces. 248 # Private interfaces.
249 'cpp/private/flash_fullscreen.cc', 249 'cpp/private/flash_fullscreen.cc',
250 'cpp/private/flash_fullscreen.h', 250 'cpp/private/flash_fullscreen.h',
251 'cpp/private/instance_private.cc', 251 'cpp/private/instance_private.cc',
252 'cpp/private/instance_private.h', 252 'cpp/private/instance_private.h',
253 'cpp/private/net_address_private.cc',
254 'cpp/private/net_address_private.h',
253 'cpp/private/var_private.cc', 255 'cpp/private/var_private.cc',
254 'cpp/private/var_private.h', 256 'cpp/private/var_private.h',
255 257
256 # Trusted interfaces. 258 # Trusted interfaces.
257 'cpp/trusted/file_chooser_trusted.cc', 259 'cpp/trusted/file_chooser_trusted.cc',
258 'cpp/trusted/file_chooser_trusted.h', 260 'cpp/trusted/file_chooser_trusted.h',
259 ], 261 ],
260 'conditions': [ 262 'conditions': [
261 ['OS=="win"', { 263 ['OS=="win"', {
262 'msvs_settings': { 264 'msvs_settings': {
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 }], 303 }],
302 ['OS=="mac"', { 304 ['OS=="mac"', {
303 'xcode_settings': { 305 'xcode_settings': {
304 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], 306 'WARNING_CFLAGS': ['-Wextra', '-pedantic'],
305 }, 307 },
306 }] 308 }]
307 ], 309 ],
308 }, 310 },
309 ], 311 ],
310 } 312 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698