diff options
author | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-16 02:30:03 +0000 |
---|---|---|
committer | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-16 02:30:03 +0000 |
commit | 7091950e07f2485ccbce0e9874e17cd5d8e347ec (patch) | |
tree | 3ba6b15ce774251440b277d4f69605dca297790a /ppapi/ppapi_untrusted.gyp | |
parent | 9f7fdfbc7211b34428ad7409ded82a607df998f5 (diff) | |
download | chromium_src-7091950e07f2485ccbce0e9874e17cd5d8e347ec.zip chromium_src-7091950e07f2485ccbce0e9874e17cd5d8e347ec.tar.gz chromium_src-7091950e07f2485ccbce0e9874e17cd5d8e347ec.tar.bz2 |
Pepper: Change '*_sources' variables in ppapi_sources.gypi to '*_source_files'.
This makes gyp properly relativize the paths; see
<http://code.google.com/p/gyp/wiki/InputFormatReference#Pathname_Relativization>.
TEST=builds + trybots
TBR=noelallen@chromium.org
Review URL: http://codereview.chromium.org/8975001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114751 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/ppapi_untrusted.gyp')
-rw-r--r-- | ppapi/ppapi_untrusted.gyp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ppapi/ppapi_untrusted.gyp b/ppapi/ppapi_untrusted.gyp index af0313a..eaca938 100644 --- a/ppapi/ppapi_untrusted.gyp +++ b/ppapi/ppapi_untrusted.gyp @@ -20,7 +20,7 @@ 'build_glibc': 0, 'build_newlib': 1, 'sources': [ - '<@(cpp_sources)', + '<@(cpp_source_files)', 'cpp/module_embedder.h', 'cpp/ppp_entrypoints.cc', ], @@ -58,8 +58,8 @@ '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libppapi.a', ], 'sources': [ - '<@(test_sources_common)', - '<@(test_sources_nacl)', + '<@(test_common_source_files)', + '<@(test_nacl_source_files)', ], }, }, |