blob: 7692740c54deb474de81fe08c47fde097e27961b [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001#!/usr/bin/env python
2
3# Copyright (c) 2012 Google Inc. All rights reserved.
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7"""
8Verify that pulling in a dependency a second time in a conditional works for
9shared_library targets. Regression test for http://crbug.com/122588
10"""
11
12import TestGyp
13
14test = TestGyp.TestGyp()
15
16test.run_gyp('double_dependency.gyp')
17
18# If running gyp worked, all is well.
19test.pass_test()