aboutsummaryrefslogtreecommitdiffhomepage
path: root/platform_tools/android/gyp_gen
diff options
context:
space:
mode:
Diffstat (limited to 'platform_tools/android/gyp_gen')
-rw-r--r--platform_tools/android/gyp_gen/makefile_writer.py9
-rw-r--r--platform_tools/android/gyp_gen/tool_makefile_writer.py2
2 files changed, 0 insertions, 11 deletions
diff --git a/platform_tools/android/gyp_gen/makefile_writer.py b/platform_tools/android/gyp_gen/makefile_writer.py
index d8d0c6196f..0105e1dc57 100644
--- a/platform_tools/android/gyp_gen/makefile_writer.py
+++ b/platform_tools/android/gyp_gen/makefile_writer.py
@@ -161,14 +161,6 @@ def write_clear_vars(f):
"""
f.write('include $(CLEAR_VARS)\n')
-def write_include_stlport(f):
- """Add a line to include stlport.
-
- Args:
- f: File open for writing.
- """
- f.write('include external/stlport/libstlport.mk\n')
-
def write_android_mk(target_dir, common, deviations_from_common):
"""Given all the variables, write the final make file.
@@ -233,7 +225,6 @@ def write_android_mk(target_dir, common, deviations_from_common):
if data.condition:
f.write('endif\n\n')
- write_include_stlport(f)
f.write('include $(BUILD_SHARED_LIBRARY)\n')
f.write(SKIA_TOOLS)
diff --git a/platform_tools/android/gyp_gen/tool_makefile_writer.py b/platform_tools/android/gyp_gen/tool_makefile_writer.py
index 0bf7e129e3..2dacb042b6 100644
--- a/platform_tools/android/gyp_gen/tool_makefile_writer.py
+++ b/platform_tools/android/gyp_gen/tool_makefile_writer.py
@@ -34,8 +34,6 @@ def write_tool_android_mk(target_dir, var_dict):
makefile_writer.write_group(f, 'LOCAL_PICKUP_FILES',
['$(LOCAL_PATH)/../resources'], False)
- makefile_writer.write_include_stlport(f)
-
f.write('include $(BUILD_NATIVE_TEST)\n')