Edit

kc3-lang/angle/angle.isolate

Branch :

  • Show log

    Commit

  • Author : Jamie Madill
    Date : 2015-02-26 11:04:23
    Hash : 524e3bde
    Message : Add angle.isolate. This will allow us to properly layer the isolate dependencies within Chromium. Now that ui/gl will depend on libGLESv2 on Windows, and other platforms to come, most everything will need to have the ANGLE libraries bundled. BUG=436191 Change-Id: Ifa6c87d3b7840bfbbd4830b218b6d3524258fe12 Reviewed-on: https://chromium-review.googlesource.com/254063 Reviewed-by: Kenneth Russell <kbr@chromium.org> Tested-by: Jamie Madill <jmadill@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',
            ],
          },
        }],
      ],
    }