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 // BuiltIn.h: 6 // Chooses BuiltIn_complete_autogen.h or BuiltIn_ESSL_autogen.h 7 // depending on whether platform is android 8 9 #ifndef COMPILER_TRANSLATOR_TREEUTIL_BUILTIN_H_ 10 #define COMPILER_TRANSLATOR_TREEUTIL_BUILTIN_H_ 11 12 #if defined(ANDROID) 13 # include "BuiltIn_ESSL_autogen.h" 14 #else 15 # include "BuiltIn_complete_autogen.h" 16 #endif 17 18 #endif // COMPILER_TRANSLATOR_TREEUTIL_BUILTIN_H_ 19