Edit

kc3-lang/angle/src/build_angle.gyp

Branch :

  • Show log

    Commit

  • Author : alokp@chromium.org
    Date : 2010-04-07 20:39:57
    Hash : cf2560dd
    Message : Always build libEGL and libGLESv2 as shared libraries. They do not work as static libraries so there is no point in parametrizing the library type. Review URL: http://codereview.appspot.com/810045 git-svn-id: https://angleproject.googlecode.com/svn/trunk@104 736b8ea6-26fd-11df-bfd4-992fa37f6226

  • src/build_angle.gyp
  • # Copyright (c) 2010 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': {
      },
      'targets': [
        {
          'target_name': 'translator_common',
          'type': 'static_library',
          'include_dirs': [
            'compiler',
            '.',
            '../include',
          ],
          'sources': [
            'common/angleutils.h',
            'common/debug.cpp',
            'common/debug.h',
            'compiler/BaseTypes.h',
            'compiler/Common.h',
            'compiler/ConstantUnion.h',
            'compiler/InfoSink.cpp',
            'compiler/InfoSink.h',
            'compiler/Initialize.cpp',
            'compiler/Initialize.h',
            'compiler/InitializeDll.cpp',
            'compiler/InitializeDll.h',
            'compiler/InitializeGlobals.h',
            'compiler/InitializeParseContext.h',
            'compiler/Intermediate.cpp',
            'compiler/intermediate.h',
            'compiler/intermOut.cpp',
            'compiler/IntermTraverse.cpp',
            'compiler/Link.cpp',
            'compiler/localintermediate.h',
            'compiler/MMap.h',
            'compiler/osinclude.h',
            'compiler/ossource.cpp',
            'compiler/parseConst.cpp',
            'compiler/ParseHelper.cpp',
            'compiler/ParseHelper.h',
            'compiler/PoolAlloc.cpp',
            'compiler/PoolAlloc.h',
            'compiler/QualifierAlive.cpp',
            'compiler/QualifierAlive.h',
            'compiler/RemoveTree.cpp',
            'compiler/RemoveTree.h',
            'compiler/ShaderLang.cpp',
            'compiler/ShHandle.h',
            'compiler/SymbolTable.cpp',
            'compiler/SymbolTable.h',
            'compiler/Types.h',
            'compiler/unistd.h',
            'compiler/preprocessor/atom.c',
            'compiler/preprocessor/atom.h',
            'compiler/preprocessor/compile.h',
            'compiler/preprocessor/cpp.c',
            'compiler/preprocessor/cpp.h',
            'compiler/preprocessor/cppstruct.c',
            'compiler/preprocessor/memory.c',
            'compiler/preprocessor/memory.h',
            'compiler/preprocessor/parser.h',
            'compiler/preprocessor/preprocess.h',
            'compiler/preprocessor/scanner.c',
            'compiler/preprocessor/scanner.h',
            'compiler/preprocessor/slglobals.h',
            'compiler/preprocessor/symbols.c',
            'compiler/preprocessor/symbols.h',
            'compiler/preprocessor/tokens.c',
            'compiler/preprocessor/tokens.h',
            # Generated files
            'compiler/Gen_glslang.cpp',
            'compiler/Gen_glslang_tab.cpp',
            'compiler/glslang_tab.h',
          ],
          'actions': [
            {
              'action_name': 'flex_glslang',
              'inputs': ['compiler/glslang.l'],
              'outputs': ['compiler/Gen_glslang.cpp'],
              'action': [
                'flex',
                '--noline',
                '--outfile=<(_outputs)',
                '<(_inputs)',
              ],
            },
            {
              'action_name': 'bison_glslang',
              'inputs': ['compiler/glslang.y'],
              'outputs': ['compiler/Gen_glslang_tab.cpp'],
              'action': [
                'bison',
                '--no-lines',
                '--defines=compiler/glslang_tab.h',
                '--skeleton=yacc.c',
                '--output=<(_outputs)',
                '<(_inputs)',
              ],
            },
          ],
        },
        {
          'target_name': 'translator_glsl',
          'type': 'static_library',
          'dependencies': ['translator_common'],
          'include_dirs': [
            'compiler',
            '.',
            '../include',
          ],
          'sources': [
            'compiler/CodeGenGLSL.cpp',
            'compiler/OutputGLSL.cpp',
            'compiler/OutputGLSL.h',
            'compiler/TranslatorGLSL.cpp',
            'compiler/TranslatorGLSL.h',
          ],
        },
        {
          'target_name': 'translator_hlsl',
          'type': 'static_library',
          'dependencies': ['translator_common'],
          'include_dirs': [
            'compiler',
            '.',
            '../include',
          ],
          'sources': [
            'compiler/CodeGenHLSL.cpp',
            'compiler/OutputHLSL.cpp',
            'compiler/OutputHLSL.h',
            'compiler/TranslatorHLSL.cpp',
            'compiler/TranslatorHLSL.h',
          ],
        },
        {
          'target_name': 'libGLESv2',
          'type': 'shared_library',
          'dependencies': ['translator_hlsl'],
          'include_dirs': [
            'libGLESv2',
            '.',
            '../include',
          ],
          'sources': [
            'common/angleutils.h',
            'common/debug.cpp',
            'common/debug.h',
            'libGLESv2/geometry/backend.cpp',
            'libGLESv2/geometry/backend.h',
            'libGLESv2/geometry/dx9.cpp',
            'libGLESv2/geometry/dx9.h',
            'libGLESv2/geometry/IndexDataManager.cpp',
            'libGLESv2/geometry/IndexDataManager.h',
            'libGLESv2/geometry/vertexconversion.h',
            'libGLESv2/geometry/VertexDataManager.cpp',
            'libGLESv2/geometry/VertexDataManager.h',
            'libGLESv2/Buffer.cpp',
            'libGLESv2/Buffer.h',
            'libGLESv2/Context.cpp',
            'libGLESv2/Context.h',
            'libGLESv2/Framebuffer.cpp',
            'libGLESv2/Framebuffer.h',
            'libGLESv2/libGLESv2.cpp',
            'libGLESv2/libGLESv2.def',
            'libGLESv2/main.cpp',
            'libGLESv2/main.h',
            'libGLESv2/mathutil.h',
            'libGLESv2/Program.cpp',
            'libGLESv2/Program.h',
            'libGLESv2/Renderbuffer.cpp',
            'libGLESv2/Renderbuffer.h',
            'libGLESv2/Shader.cpp',
            'libGLESv2/Shader.h',
            'libGLESv2/Texture.cpp',
            'libGLESv2/Texture.h',
            'libGLESv2/utilities.cpp',
            'libGLESv2/utilities.h',
          ],
          'msvs_settings': {
            'VCLinkerTool': {
              'AdditionalDependencies': ['d3dx9.lib'],
            }
          },
        },
        {
          'target_name': 'libEGL',
          'type': 'shared_library',
          'dependencies': ['libGLESv2'],
          'include_dirs': [
            'libEGL',
            '.',
            '../include',
          ],
          'sources': [
            'common/angleutils.h',
            'common/debug.cpp',
            'common/debug.h',
            'libEGL/Config.cpp',
            'libEGL/Config.h',
            'libEGL/Display.cpp',
            'libEGL/Display.h',
            'libEGL/libEGL.cpp',
            'libEGL/libEGL.def',
            'libEGL/main.cpp',
            'libEGL/main.h',
            'libEGL/Surface.cpp',
            'libEGL/Surface.h',
          ],
          'msvs_settings': {
            'VCLinkerTool': {
              'AdditionalDependencies': ['d3d9.lib'],
            }
          },
        },
      ],
    }
    
    # Local Variables:
    # tab-width:2
    # indent-tabs-mode:nil
    # End:
    # vim: set expandtab tabstop=2 shiftwidth=2: