Edit

kc3-lang/angle/build/common_defines.gypi

Branch :

  • Show log

    Commit

  • Author : Austin Kinross
    Date : 2015-03-19 10:17:00
    Hash : f55d4d17
    Message : Remove hardcoded additional include/lib paths from WinRT projects Change-Id: Ic78a7dc3a1b3027f4fffc352fa2fb097b6024970 Reviewed-on: https://chromium-review.googlesource.com/261185 Reviewed-by: Jamie Madill <jmadill@chromium.org> Tested-by: Jamie Madill <jmadill@chromium.org>

  • build/common_defines.gypi
  • # Copyright (c) 2014 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.
    
    {
        'variables':
        {
            'component%': 'static_library',
            'windows_sdk_path%': 'C:/Program Files (x86)/Windows Kits/8.1',
            'angle_build_winrt%': '0',
            'angle_build_winphone%': '0',
        },
        'msvs_disabled_warnings':
        [
            4100, # Unreferenced formal parameter. Not interesting.
            4127, # conditional expression is constant. Too noisy to be useful.
    
            # Conversion warnings.  These fire all over the place in ANGLE.
            4244, # Conversion from 'type1' to 'type2', possible loss of data
            4267, # Conversion from 'size_t' to 'type', possible loss of data
    
            # TODO: 4702 doesn't fire on xtree in VS2015 (CTP6). We can remove C4702 after moving to VS2015.
            4702, # Unreachable code. Should only fire on system header xtree.
            
            4718, # Recursive call has no side effects. Fires on xtree too.
        ],
        'conditions':
        [
            ['component=="shared_library"',
            {
                'defines': [ 'COMPONENT_BUILD' ],
                'msvs_disabled_warnings':
                [
                    4251, # STL objects do not have DLL interface, needed by ShaderVars.h
                ],
            }],
            ['angle_build_winrt==0',
            {
                'msvs_system_include_dirs':
                [
                    '<(windows_sdk_path)/Include/shared',
                    '<(windows_sdk_path)/Include/um',
                ],
            }],
        ],
        'msvs_settings':
        {
            'VCCLCompilerTool':
            {
                'PreprocessorDefinitions':
                [
                    '_CRT_SECURE_NO_DEPRECATE',
                    '_SCL_SECURE_NO_WARNINGS',
                    '_HAS_EXCEPTIONS=0',
                    'NOMINMAX',
                ],
            },
            'VCLinkerTool':
            {
                'conditions':
                [
                    ['angle_build_winrt==0',
                    {
                        'AdditionalDependencies':
                        [
                            'kernel32.lib',
                            'gdi32.lib',
                            'winspool.lib',
                            'comdlg32.lib',
                            'advapi32.lib',
                            'shell32.lib',
                            'ole32.lib',
                            'oleaut32.lib',
                            'user32.lib',
                            'uuid.lib',
                            'odbc32.lib',
                            'odbccp32.lib',
                            'delayimp.lib',
                        ],
                    }],
                    # winrt compilation is dynamic depending on the project
                    # type. AdditionalDependencies is automatically configured
                    # with the required .libs
                    ['angle_build_winrt==1',
                    {
                        'AdditionalDependencies':
                        [
                            '%(AdditionalDependencies)',
                            'uuid.lib',
                        ],
                    }],
                ],
            },
        },
    
        # Windows SDK library directories for the configurations
        'configurations':
        {
            'conditions':
            [
                ['angle_build_winrt==0',
                {
                    'x86_Base':
                    {
                        'msvs_settings':
                        {
                            'VCLinkerTool':
                            {
                                'AdditionalLibraryDirectories':
                                [
                                    '<(windows_sdk_path)/Lib/winv6.3/um/x86',
                                ],
                            },
                            'VCLibrarianTool':
                            {
                                'AdditionalLibraryDirectories':
                                [
                                    '<(windows_sdk_path)/Lib/winv6.3/um/x86',
                                ],
                            },
                        },
                    },
                    'x64_Base':
                    {
                        'msvs_settings':
                        {
                            'VCLinkerTool':
                            {
                                'AdditionalLibraryDirectories':
                                [
                                    '<(windows_sdk_path)/Lib/winv6.3/um/x64',
                                ],
                            },
                            'VCLibrarianTool':
                            {
                                'AdditionalLibraryDirectories':
                                [
                                    '<(windows_sdk_path)/Lib/winv6.3/um/x64',
                                ],
                            },
                        },
                    },
                }],
            ],
        },
    }