Edit

kc3-lang/angle/angle.isolate

Branch :

  • Show log

    Commit

  • Author : Kenneth Russell
    Date : 2015-07-07 12:36:07
    Hash : f9148e2a
    Message : Include libEGL.so and libGLESv2.so in ANGLE-based isolates on Linux. Fixes problem where the glBlitFramebufferANGLE symbol couldn't be found because Mesa's libGLESv2.so was being picked up. BUG=angleproject:892 Change-Id: Ia3c55bd8eb3f078350adf4cc504bbbed6d97cb0b Reviewed-on: https://chromium-review.googlesource.com/283950 Reviewed-by: Geoff Lang <geofflang@chromium.org> Reviewed-by: Corentin Wallez <cwallez@chromium.org> Tested-by: Kenneth Russell <kbr@chromium.org>

  • angle.isolate
  • # Copyright 2015 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.
    {
      'conditions': [
        ['OS=="win"', {
          'variables': {
            'files': [
              '<(PRODUCT_DIR)/d3dcompiler_47.dll',
              '<(PRODUCT_DIR)/libEGL.dll',
              '<(PRODUCT_DIR)/libGLESv2.dll',
            ],
          },
        }],
        ['OS=="linux"', {
          'variables': {
            'files': [
              '<(PRODUCT_DIR)/lib/libEGL.so',
              '<(PRODUCT_DIR)/lib/libGLESv2.so',
            ],
          },
        }],
      ],
    }