diff options
author | kbr@chromium.org <kbr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-30 10:52:41 +0000 |
---|---|---|
committer | kbr@chromium.org <kbr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-30 10:52:41 +0000 |
commit | d08184814d7e3e6b64efbaa2a00ac07371411548 (patch) | |
tree | b66a5c3580d3453e3a8826445ec85c0b9629834d | |
parent | dc77e499f994ce704735229cc69893b9794a3bb5 (diff) | |
download | chromium_src-d08184814d7e3e6b64efbaa2a00ac07371411548.zip chromium_src-d08184814d7e3e6b64efbaa2a00ac07371411548.tar.gz chromium_src-d08184814d7e3e6b64efbaa2a00ac07371411548.tar.bz2 |
Made gl_tests, angle_unittests, and gles2_conform_test depend on base.isolate.
These executables are failing on Windows in Debug mode, very likely
because they're missing the Visual Studio runtime DLLs.
BUG=378021
TBR=maruel@chromium.org
NOTRY=true
Review URL: https://codereview.chromium.org/302003006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273800 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/angle.isolate | 3 | ||||
-rw-r--r-- | chrome/angle_unittests.isolate | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/chrome/angle.isolate b/chrome/angle.isolate index 8666314..13b1a15 100644 --- a/chrome/angle.isolate +++ b/chrome/angle.isolate @@ -2,6 +2,9 @@ # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. { + 'includes': [ + '../base/base.isolate', + ], 'conditions': [ ['OS=="win"', { 'variables': { diff --git a/chrome/angle_unittests.isolate b/chrome/angle_unittests.isolate index 9d8c4f1..1689ebc 100644 --- a/chrome/angle_unittests.isolate +++ b/chrome/angle_unittests.isolate @@ -2,6 +2,9 @@ # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. { + 'includes': [ + '../base/base.isolate', + ], 'conditions': [ ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', { 'variables': { |