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

Unified Diff: ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_shim.gyp

Issue 263083012: Shorten gyp target names for PNaCl IRT Shim (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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
Index: ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_shim.gyp
diff --git a/ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_shim.gyp b/ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_shim.gyp
index 1dae48745de45897cb976617b7e4c7a5e71cc380..1d0b0971aea37420de0424b0d198309a94560971 100644
--- a/ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_shim.gyp
+++ b/ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_shim.gyp
@@ -9,7 +9,7 @@
'targets': [
{
# The full library, which PNaCl uses for offline .pexe -> .nexe.
- 'target_name': 'pnacl_irt_shim_aot',
+ 'target_name': 'shim_aot',
Mark Seaborn 2014/05/05 21:02:52 Maybe comment here that we're keeping the name sho
Derek Schuff 2014/05/05 21:34:53 Done.
'type': 'none',
'variables': {
'nlib_target': 'libpnacl_irt_shim.a',
@@ -50,10 +50,10 @@
# If we ever change that hook interface or change the in-IRT shim's ABI,
# we would need to clear the translation cache to match the new IRT.
{
- 'target_name': 'pnacl_irt_shim_browser',
+ 'target_name': 'shim_browser',
'type': 'none',
'variables': {
- # Same name as pnacl_irt_shim_aot, so that we don't need to change
+ # Same output file name as shim_aot, so that we don't need to change
# the linker commandlines, but output to the "for_browser" directory,
# and have the pnacl_support_extension copy from that directory.
'nlib_target': 'libpnacl_irt_shim.a',
@@ -85,7 +85,7 @@
# Second half of shim library for PNaCl in-browser translation.
# This half goes into the IRT and is returned by the unstable
# IRT hook interface.
- 'target_name': 'pnacl_irt_shim_for_irt',
+ 'target_name': 'shim_for_irt',
'type': 'none',
'variables': {
'nlib_target': 'libpnacl_irt_shim_for_irt.a',

Powered by Google App Engine
This is Rietveld 408576698