blob: a45de898a4b946a18b9c5a96c2ec6a82ffb0ffb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/env python
# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""
Verifies nested dependent_settings directives project generation.
"""
import TestGyp
test = TestGyp.TestGyp()
test.run_gyp("all-dependent-settings.gyp")
test.run_gyp("direct-dependent-settings.gyp")
test.pass_test()
|