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

Unified Diff: native_client_sdk/src/build_tools/build.scons

Issue 8975001: Pepper: Change '*_sources' variables in ppapi_sources.gypi to '*_source_files'. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: argh Created 9 years 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 | « no previous file | ppapi/native_client/src/shared/ppapi/build.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: native_client_sdk/src/build_tools/build.scons
diff --git a/native_client_sdk/src/build_tools/build.scons b/native_client_sdk/src/build_tools/build.scons
index 067c03f3653e50a6877625df6ea793e72a2f9fad..708b5b7ab691ea591fca2e879cb5ea711c242cc2 100644
--- a/native_client_sdk/src/build_tools/build.scons
+++ b/native_client_sdk/src/build_tools/build.scons
@@ -164,21 +164,22 @@ ppapi_gl_gypi = gyp_extract.LoadGypFile(os.path.join(ppapi_base,
'ppapi_gl.gypi'))
# From ppapi_cpp.gypi:ppapi_c:c/[^/]*\.h
-c_headers = GypSources(ppapi_sources_map['c_sources'], 'c/[^/]*\.h')
+c_headers = GypSources(ppapi_sources_map['c_source_files'], 'c/[^/]*\.h')
# From ppapi_cpp.gypi:ppapi_c:c/dev/[^/]*\.h
-c_dev_headers = GypSources(ppapi_sources_map['c_sources'], 'c/dev/[^/]*\.h')
+c_dev_headers = GypSources(ppapi_sources_map['c_source_files'],
+ 'c/dev/[^/]*\.h')
# From ppapi_cpp.gypi:ppapi_cpp_objects:cpp/[^/]*\.h
# From ppapi_cpp.gypi:ppapi_cpp:cpp/[^/]*\.h
cpp_headers = (
- GypSources(ppapi_sources_map['cpp_sources'], 'cpp/[^/]*\.h') +
+ GypSources(ppapi_sources_map['cpp_source_files'], 'cpp/[^/]*\.h') +
gyp_extract.GypTargetSources(
ppapi_cpp_gypi, 'ppapi_cpp', 'cpp/[^/]*\.h')
)
# From ppapi_cpp.gypi:ppapi_cpp_objects:cpp/dev/[^/]*\.h
-cpp_dev_headers = GypSources(ppapi_sources_map['cpp_sources'],
+cpp_dev_headers = GypSources(ppapi_sources_map['cpp_source_files'],
'cpp/dev/[^/]*\.h')
# From ppapi_gl.gypi:ppapi_gles2:.*\.h
@@ -204,7 +205,7 @@ cpp_dev_header_install = env.AddHeaderToSdk(
# From ppapi_cpp.gypi:ppapi_cpp_objects:cpp/[^/]*\.cc
# From ppapi_cpp.gypi:ppapi_cpp:cpp/[^/]*\.cc
cpp_trusted_sources = (
- GypSources(ppapi_sources_map['cpp_sources'], 'cpp/[^/]*\.cc') +
+ GypSources(ppapi_sources_map['cpp_source_files'], 'cpp/[^/]*\.cc') +
gyp_extract.GypTargetSources(
ppapi_cpp_gypi, 'ppapi_cpp', 'cpp/[^/]*\.cc')
)
« no previous file with comments | « no previous file | ppapi/native_client/src/shared/ppapi/build.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698