forked from mikolalysenko/angle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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/284361 Tested-by: Kenneth Russell <[email protected]> Reviewed-by: Antoine Labour <[email protected]> Reviewed-by: Geoff Lang <[email protected]>
- Loading branch information
1 parent
b5841ef
commit 6d2e0ee
Showing
2 changed files
with
24 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
], | ||
}, | ||
}], | ||
], | ||
} |