1 // Copyright 2019 The ANGLE Project Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 // 5 // ParseContext_interm.h: 6 // Chooses ParseContext_complete_autogen.h or ParseContext_ESSL_autogen.h 7 // depending on whether platform is android 8 9 #ifndef COMPILER_TRANSLATOR_PARSECONTEXT_INTERM_H_ 10 #define COMPILER_TRANSLATOR_PARSECONTEXT_INTERM_H_ 11 12 #if defined(ANDROID) 13 # include "ParseContext_ESSL_autogen.h" 14 #else 15 # include "ParseContext_complete_autogen.h" 16 #endif 17 18 #endif // COMPILER_TRANSLATOR_PARSECONTEXT_INTERM_H_ 19