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

Unified Diff: ppapi/ppapi_cpp.gypi

Issue 7320002: Allow C/C++ targets to be suffixed for use in Native Client checkout. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/ppapi.gyp ('k') | ppapi/ppapi_gl.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/ppapi_cpp.gypi
===================================================================
--- ppapi/ppapi_cpp.gypi (revision 91704)
+++ ppapi/ppapi_cpp.gypi (working copy)
@@ -5,7 +5,7 @@
{
'targets': [
{
- 'target_name': 'ppapi_c',
+ 'target_name': 'ppapi_c<(nacl_ppapi_library_suffix)',
'type': 'none',
'all_dependent_settings': {
'include_dirs': [
@@ -122,10 +122,10 @@
],
},
{
- 'target_name': 'ppapi_cpp_objects',
+ 'target_name': 'ppapi_cpp_objects<(nacl_ppapi_library_suffix)',
'type': 'static_library',
'dependencies': [
- 'ppapi_c'
+ 'ppapi_c<(nacl_ppapi_library_suffix)'
],
'include_dirs': [
'..',
@@ -260,11 +260,11 @@
],
},
{
- 'target_name': 'ppapi_cpp',
+ 'target_name': 'ppapi_cpp<(nacl_ppapi_library_suffix)',
'type': 'static_library',
'dependencies': [
- 'ppapi_c',
- 'ppapi_cpp_objects',
+ 'ppapi_c<(nacl_ppapi_library_suffix)',
+ 'ppapi_cpp_objects<(nacl_ppapi_library_suffix)',
],
'include_dirs': [
'..',
« no previous file with comments | « ppapi/ppapi.gyp ('k') | ppapi/ppapi_gl.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698