diff options
author | kbr <kbr@chromium.org> | 2015-07-13 16:43:18 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-07-13 23:44:49 +0000 |
commit | c148a71cb902192f696da7930e4200e6147e9b7b (patch) | |
tree | f5ffe19318fdd0cea2f7893bef1ff2400ca51136 /ui | |
parent | ff8b5c7ae0273be9b56d64930aaee1f5f13e1eba (diff) | |
download | chromium_src-c148a71cb902192f696da7930e4200e6147e9b7b.zip chromium_src-c148a71cb902192f696da7930e4200e6147e9b7b.tar.gz chromium_src-c148a71cb902192f696da7930e4200e6147e9b7b.tar.bz2 |
Replace references to angle.isolate with gl.isolate.
This provides a single point where these dependencies can be updated.
BUG=509158
CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel
Review URL: https://codereview.chromium.org/1229213008
Cr-Commit-Position: refs/heads/master@{#338594}
Diffstat (limited to 'ui')
-rw-r--r-- | ui/gl/gl.isolate | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/ui/gl/gl.isolate b/ui/gl/gl.isolate new file mode 100644 index 0000000..1ca7ef5 --- /dev/null +++ b/ui/gl/gl.isolate @@ -0,0 +1,21 @@ +# Copyright 2015 The Chromium 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 dependency on the default behavior of +# Chromium's OpenGL binding layer. Many targets (in particular test +# targets) that use graphics rely on this layer either implicitly or +# explicitly, but not all of them need a direct dependency on ANGLE, +# especially as ANGLE is being brought up on more platforms. This +# isolate allows these targets to continue to use Chromium's default +# graphics code path, while others can depend directly on ANGLE on +# non-Windows platforms. +{ + # If includes were supported in conditions, we'd prefer to + # conditionally include angle.isolate here only on Windows, rather + # than introducing another isolate for ANGLE on multiple + # platforms. https://github.com/luci/luci-py/issues/230 + 'includes': [ + '../../third_party/angle/angle.isolate', + ], +} |