Commit 6d2e0ee9 by Kenneth Russell

Add isolate for ANGLE on all platforms.

This will be included in isolates for targets which really need it; initially, angle_end2end_tests. BUG=angleproject:892 Change-Id: I466455b0cc50a70980ddc09a6db2211f13774abc Reviewed-on: https://chromium-review.googlesource.com/284361Tested-by: 's avatarKenneth Russell <kbr@chromium.org> Reviewed-by: 's avatarAntoine Labour <piman@chromium.org> Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org>
parent b5841ef2
# Copyright 2015 The ANGLE Project Authors. All rights reserved. # Copyright 2015 The ANGLE Project Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be # Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file. # found in the LICENSE file.
# This isolate expresses the Chromium project's default runtime
# dependencies.
{ {
'conditions': [ 'conditions': [
['OS=="win"', { ['OS=="win"', {
...@@ -12,13 +15,5 @@ ...@@ -12,13 +15,5 @@
], ],
}, },
}], }],
['OS=="linux"', {
'variables': {
'files': [
'<(PRODUCT_DIR)/lib/libEGL.so',
'<(PRODUCT_DIR)/lib/libGLESv2.so',
],
},
}],
], ],
} }
# 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