gyptest-library.py 435 B

1234567891011121314151617181920
  1. #!/usr/bin/env python
  2. # Copyright (c) 2012 Google Inc. All rights reserved.
  3. # Use of this source code is governed by a BSD-style license that can be
  4. # found in the LICENSE file.
  5. """
  6. Verifies that a dependency on two gyp files with the same name do not create a
  7. uid collision in the resulting generated xcode file.
  8. """
  9. import TestGyp
  10. import sys
  11. test = TestGyp.TestGyp()
  12. test.run_gyp('test.gyp', chdir='library')
  13. test.pass_test()