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_sources.gypi | |
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_sources.gypi')
-rw-r--r-- | ppapi/ppapi_sources.gypi | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ppapi/ppapi_sources.gypi b/ppapi/ppapi_sources.gypi index 5312209..e4fb62f 100644 --- a/ppapi/ppapi_sources.gypi +++ b/ppapi/ppapi_sources.gypi @@ -4,7 +4,7 @@ { 'variables': { - 'c_sources': [ + 'c_source_files': [ 'c/pp_bool.h', 'c/pp_completion_callback.h', 'c/pp_errors.h', @@ -115,7 +115,7 @@ 'c/trusted/ppb_url_loader_trusted.h', 'c/trusted/ppp_broker.h', ], - 'cpp_sources': [ + 'cpp_source_files': [ 'cpp/audio.cc', 'cpp/audio.h', 'cpp/audio_config.cc', @@ -249,7 +249,7 @@ # # Common Testing source for trusted and untrusted (NaCl) pugins. # - 'test_sources_common': [ + 'test_common_source_files': [ # Common test files 'tests/all_c_includes.h', 'tests/all_cpp_includes.h', @@ -274,7 +274,7 @@ # # Sources used in NaCl tests. # - 'test_sources_nacl': [ + 'test_nacl_source_files': [ # Test cases (PLEASE KEEP THIS SECTION IN ALPHABETICAL ORDER) 'tests/test_audio_config.cc', 'tests/test_cursor_control.cc', @@ -293,7 +293,7 @@ # # Sources used in trusted tests. # - 'test_sources_trusted': [ + 'test_trusted_source_files': [ # Test cases (PLEASE KEEP THIS SECTION IN ALPHABETICAL ORDER) 'tests/test_audio.cc', 'tests/test_audio.h', @@ -375,10 +375,10 @@ 'conditions': [ ['p2p_apis==1', { 'variables': { - 'c_sources': [ + 'c_source_files': [ 'c/dev/ppb_transport_dev.h', ], - 'cpp_sources': [ + 'cpp_source_files': [ 'cpp/dev/transport_dev.cc', 'cpp/dev/transport_dev.h', ], |