1 #!/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 """ 8 Verifies that uldi can be disabled on a per-project-reference basis in vs2010. 9 """ 10 11 import TestGyp 12 13 test = TestGyp.TestGyp(formats=['msvs'], workdir='workarea_all') 14 15 test.run_gyp('hello.gyp') 16 17 if test.uses_msbuild: 18 test.must_contain('hello.vcxproj', '<UseLibraryDependencyInputs>false') 19 20 test.pass_test() 21