From c148a71cb902192f696da7930e4200e6147e9b7b Mon Sep 17 00:00:00 2001 From: kbr Date: Mon, 13 Jul 2015 16:43:18 -0700 Subject: 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} --- ui/gl/gl.isolate | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 ui/gl/gl.isolate (limited to 'ui') 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', + ], +} -- cgit v1.1