Rename translator to shader_translator and remove redundant projects.

The essl_to_hlsl and essl_to_glsl projects were exactly the same so it
doesn't make sense to keep both.

BUG=angleproject:981

Change-Id: Ibf034a71e94ba5002f9c40ac87720bf0de74ae18
Reviewed-on: https://chromium-review.googlesource.com/266872
Reviewed-by: Jamie Madill <jmadill@chromium.org>
Reviewed-by: Brandon Jones <bajones@chromium.org>
Tested-by: Geoff Lang <geofflang@chromium.org>
This commit is contained in:
Geoff Lang 2015-04-22 11:09:45 -04:00
Родитель 413fd933a3
Коммит 2f3ba21015
2 изменённых файлов: 2 добавлений и 18 удалений

Просмотреть файл

@ -6,12 +6,12 @@
'targets':
[
{
'target_name': 'essl_to_glsl',
'target_name': 'shader_translator',
'type': 'executable',
'includes': [ '../build/common_defines.gypi', ],
'dependencies': [ '../src/angle.gyp:translator_static', ],
'include_dirs': [ '../include', ],
'sources': [ '<!@(python <(angle_path)/enumerate_files.py translator -types *.cpp *.h)' ],
'sources': [ 'shader_translator/shader_translator.cpp' ],
},
],
'conditions':
@ -20,22 +20,6 @@
{
'targets':
[
{
'target_name': 'essl_to_hlsl',
'type': 'executable',
'includes': [ '../build/common_defines.gypi', ],
'dependencies': [ '../src/angle.gyp:translator_static', ],
'include_dirs':
[
'../include',
'../src',
],
'sources':
[
'<!@(python <(angle_path)/enumerate_files.py translator -types *.cpp *.h)',
],
},
{
'target_name': 'sample_util',
'type': 'static_library',