Cleanup after translator component removal
- Unite translator with translator_lib
- Remove flags and defines for shared library exports
BUG=angleproject:1596
Change-Id: Icd145a4b79e2472766a2b56017bb0f36f244482e
Reviewed-on: https://chromium-review.googlesource.com/410261
Reviewed-by: Jamie Madill <jmadill@chromium.org>
Reviewed-by: Corentin Wallez <cwallez@chromium.org>
Commit-Queue: Yuly Novikov <ynovikov@chromium.org>
diff --git a/scripts/update_canary_angle.py b/scripts/update_canary_angle.py
index 3bc1666..1bee370 100644
--- a/scripts/update_canary_angle.py
+++ b/scripts/update_canary_angle.py
@@ -58,8 +58,7 @@
print('Copying DLLs from ' + source_folder + ' to ' + dest_folder + '.')
-# Translator.dll appears if we build in component=shared_library mode.
-for dll in ['libGLESv2.dll', 'libEGL.dll', 'translator.dll']:
+for dll in ['libGLESv2.dll', 'libEGL.dll']:
src = os.path.join(source_folder, dll)
if os.path.exists(src):
# Make a backup of the original unmodified DLLs if they are present.