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

Side by Side Diff: ppapi/ppapi_cpp.gypi

Issue 6871040: Rename Instance_Trusted to Instance_Private, wire it up in Chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix up based on review comments. 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
« no previous file with comments | « ppapi/example/example.cc ('k') | ppapi/tests/all_c_includes.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 'c/dev/ppp_video_decoder_dev.h', 83 'c/dev/ppp_video_decoder_dev.h',
84 'c/dev/ppp_widget_dev.h', 84 'c/dev/ppp_widget_dev.h',
85 'c/dev/ppp_zoom_dev.h', 85 'c/dev/ppp_zoom_dev.h',
86 86
87 # Private interfaces. 87 # Private interfaces.
88 'c/private/ppb_flash.h', 88 'c/private/ppb_flash.h',
89 'c/private/ppb_flash_clipboard.h', 89 'c/private/ppb_flash_clipboard.h',
90 'c/private/ppb_flash_file.h', 90 'c/private/ppb_flash_file.h',
91 'c/private/ppb_flash_menu.h', 91 'c/private/ppb_flash_menu.h',
92 'c/private/ppb_flash_net_connector.h', 92 'c/private/ppb_flash_net_connector.h',
93 'c/private/ppb_instance_private.h',
93 'c/private/ppb_nacl_private.h', 94 'c/private/ppb_nacl_private.h',
94 'c/private/ppb_pdf.h', 95 'c/private/ppb_pdf.h',
95 'c/private/ppb_proxy_private.h', 96 'c/private/ppb_proxy_private.h',
97 'c/private/ppp_instance_private.h',
96 98
97 # Deprecated interfaces. 99 # Deprecated interfaces.
98 'c/dev/deprecated_bool.h', 100 'c/dev/deprecated_bool.h',
99 'c/dev/ppb_var_deprecated.h', 101 'c/dev/ppb_var_deprecated.h',
100 'c/dev/ppp_class_deprecated.h', 102 'c/dev/ppp_class_deprecated.h',
101 103
102 # Trusted interfaces. 104 # Trusted interfaces.
103 'c/trusted/ppb_audio_trusted.h', 105 'c/trusted/ppb_audio_trusted.h',
104 'c/trusted/ppb_image_data_trusted.h', 106 'c/trusted/ppb_image_data_trusted.h',
105 'c/trusted/ppb_broker_trusted.h', 107 'c/trusted/ppb_broker_trusted.h',
106 'c/trusted/ppb_instance_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 'c/trusted/ppp_instance_trusted.h',
110 ], 110 ],
111 }, 111 },
112 { 112 {
113 'target_name': 'ppapi_cpp_objects', 113 'target_name': 'ppapi_cpp_objects',
114 'type': 'static_library', 114 'type': 'static_library',
115 'dependencies': [ 115 'dependencies': [
116 'ppapi_c' 116 'ppapi_c'
117 ], 117 ],
118 'include_dirs': [ 118 'include_dirs': [
119 '..', 119 '..',
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 'cpp/dev/widget_dev.cc', 203 'cpp/dev/widget_dev.cc',
204 'cpp/dev/widget_dev.h', 204 'cpp/dev/widget_dev.h',
205 'cpp/dev/zoom_dev.cc', 205 'cpp/dev/zoom_dev.cc',
206 'cpp/dev/zoom_dev.h', 206 'cpp/dev/zoom_dev.h',
207 207
208 # Deprecated interfaces. 208 # Deprecated interfaces.
209 'cpp/dev/scriptable_object_deprecated.h', 209 'cpp/dev/scriptable_object_deprecated.h',
210 'cpp/dev/scriptable_object_deprecated.cc', 210 'cpp/dev/scriptable_object_deprecated.cc',
211 211
212 # Private interfaces. 212 # Private interfaces.
213 'cpp/private/instance_private.cc',
214 'cpp/private/instance_private.h',
213 'cpp/private/var_private.cc', 215 'cpp/private/var_private.cc',
214 'cpp/private/var_private.h', 216 'cpp/private/var_private.h',
215 ], 217 ],
216 'conditions': [ 218 'conditions': [
217 ['OS=="win"', { 219 ['OS=="win"', {
218 'msvs_guid': 'AD371A1D-3459-4E2D-8E8A-881F4B83B908', 220 'msvs_guid': 'AD371A1D-3459-4E2D-8E8A-881F4B83B908',
219 'msvs_settings': { 221 'msvs_settings': {
220 'VCCLCompilerTool': { 222 'VCCLCompilerTool': {
221 'AdditionalOptions': ['/we4244'], # implicit conversion, possible loss of data 223 'AdditionalOptions': ['/we4244'], # implicit conversion, possible loss of data
222 }, 224 },
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 }], 257 }],
256 ['OS=="mac"', { 258 ['OS=="mac"', {
257 'xcode_settings': { 259 'xcode_settings': {
258 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], 260 'WARNING_CFLAGS': ['-Wextra', '-pedantic'],
259 }, 261 },
260 }] 262 }]
261 ], 263 ],
262 }, 264 },
263 ], 265 ],
264 } 266 }
OLDNEW
« no previous file with comments | « ppapi/example/example.cc ('k') | ppapi/tests/all_c_includes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698