Home | History | Annotate | Download | only in same-gyp-name
      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 a dependency on two gyp files with the same name do not create a
      9 uid collision in the resulting generated xcode file.
     10 """
     11 
     12 import TestGyp
     13 
     14 import sys
     15 
     16 test = TestGyp.TestGyp()
     17 
     18 test.run_gyp('test.gyp', chdir='library')
     19 
     20 test.pass_test()
     21