Skip to content

Commit

Permalink
Add isolate for ANGLE on all platforms.
Browse files Browse the repository at this point in the history
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/284361
Tested-by: Kenneth Russell <[email protected]>
Reviewed-by: Antoine Labour <[email protected]>
Reviewed-by: Geoff Lang <[email protected]>
  • Loading branch information
kenrussell committed Jul 9, 2015
1 parent b5841ef commit 6d2e0ee
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 8 deletions.
11 changes: 3 additions & 8 deletions angle.isolate
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# 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"', {
Expand All @@ -12,13 +15,5 @@
],
},
}],
['OS=="linux"', {
'variables': {
'files': [
'<(PRODUCT_DIR)/lib/libEGL.so',
'<(PRODUCT_DIR)/lib/libGLESv2.so',
],
},
}],
],
}
21 changes: 21 additions & 0 deletions angle_on_all_platforms.isolate
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# 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',
],
},
}],
],
}

0 comments on commit 6d2e0ee

Please sign in to comment.