Commit 59a334fc by Corentin Wallez Committed by Commit Bot

Remove ANGLE's isolate

BUG=angleproject:1462 Change-Id: I549692583bbf35edc4e383f8fb7e0dff17c28594 Reviewed-on: https://chromium-review.googlesource.com/365234Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Corentin Wallez <cwallez@chromium.org>
parent 9c721c64
# 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.
# This isolate expresses the Chromium project's default runtime
# dependencies.
{
'conditions': [
['OS=="win"', {
'variables': {
'files': [
'<(PRODUCT_DIR)/d3dcompiler_47.dll',
'<(PRODUCT_DIR)/libEGL.dll',
'<(PRODUCT_DIR)/libGLESv2.dll',
],
},
}],
],
}
# 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.
# This isolate expresses ANGLE's runtime dependencies on all platforms
# on which it can currently compile.
{
'includes': [
'angle.isolate',
],
'conditions': [
['OS=="linux"', {
'variables': {
'files': [
'<(PRODUCT_DIR)/lib/libEGL.so',
'<(PRODUCT_DIR)/lib/libGLESv2.so',
],
},
}],
],
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment