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

Side by Side Diff: ppapi/ppapi_cpp.gypi

Issue 8275013: Pepper: Add a C++ wrapper for the trusted file chooser. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update copyright Created 9 years, 2 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/cpp/trusted/file_chooser_trusted.cc ('k') | no next file » | 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) 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<(nacl_ppapi_library_suffix)', 8 'target_name': 'ppapi_c<(nacl_ppapi_library_suffix)',
9 'type': 'none', 9 'type': 'none',
10 'all_dependent_settings': { 10 'all_dependent_settings': {
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/var_private.cc', 253 'cpp/private/var_private.cc',
254 'cpp/private/var_private.h', 254 'cpp/private/var_private.h',
255
256 # Trusted interfaces.
257 'cpp/trusted/file_chooser_trusted.cc',
258 'cpp/trusted/file_chooser_trusted.h',
255 ], 259 ],
256 'conditions': [ 260 'conditions': [
257 ['OS=="win"', { 261 ['OS=="win"', {
258 'msvs_settings': { 262 'msvs_settings': {
259 'VCCLCompilerTool': { 263 'VCCLCompilerTool': {
260 'AdditionalOptions': ['/we4244'], # implicit conversion, possible loss of data 264 'AdditionalOptions': ['/we4244'], # implicit conversion, possible loss of data
261 }, 265 },
262 }, 266 },
263 }], 267 }],
264 ['OS=="linux"', { 268 ['OS=="linux"', {
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 }], 301 }],
298 ['OS=="mac"', { 302 ['OS=="mac"', {
299 'xcode_settings': { 303 'xcode_settings': {
300 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], 304 'WARNING_CFLAGS': ['-Wextra', '-pedantic'],
301 }, 305 },
302 }] 306 }]
303 ], 307 ],
304 }, 308 },
305 ], 309 ],
306 } 310 }
OLDNEW
« no previous file with comments | « ppapi/cpp/trusted/file_chooser_trusted.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698