mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
30ec0fc1a6
The upstream is at: http://code.google.com/p/angleproject/ This update allows to pass all conformance tests on Windows with ANGLE renderer; also fixes 2 crashes (see dependent bugs).
45 lines
1.1 KiB
Python
45 lines
1.1 KiB
Python
# Copyright (c) 2012 The ANGLE Project Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
{
|
|
'targets': [
|
|
{
|
|
'target_name': 'gtest',
|
|
'type': 'static_library',
|
|
'include_dirs': [
|
|
'../third_party/googletest',
|
|
'../third_party/googletest/include',
|
|
],
|
|
'sources': [
|
|
'../third_party/googletest/src/gtest-all.cc',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'preprocessor_tests',
|
|
'type': 'executable',
|
|
'dependencies': [
|
|
'../src/build_angle.gyp:preprocessor',
|
|
'gtest',
|
|
],
|
|
'include_dirs': [
|
|
'../src/compiler/preprocessor/new',
|
|
'../third_party/googletest/include',
|
|
],
|
|
'sources': [
|
|
'../third_party/googletest/src/gtest_main.cc',
|
|
'preprocessor_tests/identifier_test.cpp',
|
|
'preprocessor_tests/number_test.cpp',
|
|
'preprocessor_tests/token_test.cpp',
|
|
'preprocessor_tests/space_test.cpp',
|
|
],
|
|
},
|
|
],
|
|
}
|
|
|
|
# Local Variables:
|
|
# tab-width:2
|
|
# indent-tabs-mode:nil
|
|
# End:
|
|
# vim: set expandtab tabstop=2 shiftwidth=2:
|