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

Side by Side Diff: ppapi/ppapi_cpp.gypi

Issue 7108051: Implement out-of-process proxy for PPB_Buffer_Dev. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 6 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 'c/private/ppb_proxy_private.h', 95 'c/private/ppb_proxy_private.h',
96 'c/private/ppp_instance_private.h', 96 'c/private/ppp_instance_private.h',
97 97
98 # Deprecated interfaces. 98 # Deprecated interfaces.
99 'c/dev/deprecated_bool.h', 99 'c/dev/deprecated_bool.h',
100 'c/dev/ppb_var_deprecated.h', 100 'c/dev/ppb_var_deprecated.h',
101 'c/dev/ppp_class_deprecated.h', 101 'c/dev/ppp_class_deprecated.h',
102 102
103 # Trusted interfaces. 103 # Trusted interfaces.
104 'c/trusted/ppb_audio_trusted.h', 104 'c/trusted/ppb_audio_trusted.h',
105 'c/trusted/ppb_broker_trusted.h',
106 'c/trusted/ppb_buffer_trusted.h',
105 'c/trusted/ppb_image_data_trusted.h', 107 'c/trusted/ppb_image_data_trusted.h',
106 'c/trusted/ppb_broker_trusted.h',
107 'c/trusted/ppb_url_loader_trusted.h', 108 'c/trusted/ppb_url_loader_trusted.h',
108 'c/trusted/ppp_broker.h', 109 'c/trusted/ppp_broker.h',
109 ], 110 ],
110 'conditions': [ 111 'conditions': [
111 ['p2p_apis==1', { 112 ['p2p_apis==1', {
112 'sources': [ 113 'sources': [
113 'c/dev/ppb_transport_dev.h', 114 'c/dev/ppb_transport_dev.h',
114 ], 115 ],
115 }], 116 }],
116 ], 117 ],
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 }], 268 }],
268 ['OS=="mac"', { 269 ['OS=="mac"', {
269 'xcode_settings': { 270 'xcode_settings': {
270 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], 271 'WARNING_CFLAGS': ['-Wextra', '-pedantic'],
271 }, 272 },
272 }] 273 }]
273 ], 274 ],
274 }, 275 },
275 ], 276 ],
276 } 277 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698