• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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""" Verifies that VS variables that require special variables are expanded
8correctly. """
9
10import sys
11import TestGyp
12
13if sys.platform == 'win32':
14  test = TestGyp.TestGyp()
15
16  test.run_gyp('special-variables.gyp', chdir='src')
17  test.build('special-variables.gyp', test.ALL, chdir='src')
18  test.pass_test()
19