aboutsummaryrefslogtreecommitdiffhomepage
path: root/platform_tools/android/gyp_gen/makefile_writer.py
diff options
context:
space:
mode:
Diffstat (limited to 'platform_tools/android/gyp_gen/makefile_writer.py')
-rw-r--r--platform_tools/android/gyp_gen/makefile_writer.py9
1 files changed, 0 insertions, 9 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)