Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(368)

Side by Side Diff: test/dependencies/gyptest-indirect-module-dependency.py

Issue 1410213005: win: Fix missing loadable_module dependency in ULDI mode (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: . Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « pylib/gyp/generator/ninja.py ('k') | test/dependencies/module-dep/a.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env python
2
3 # Copyright (c) 2015 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 Make sure that we cause downstream modules to get built when we depend on the
9 parent targets.
10 """
11
12 import TestGyp
13
14 test = TestGyp.TestGyp(formats=['msvs', 'ninja'])
Nico 2015/11/03 20:39:15 should this pass with all generators?
scottmg 2015/11/03 20:54:34 Oops, yes, thanks. Done.
15
16 CHDIR = 'module-dep'
17 test.run_gyp('indirect-module-dependency.gyp', chdir=CHDIR)
18 test.build('indirect-module-dependency.gyp', 'an_exe', chdir=CHDIR)
19 test.built_file_must_exist(
20 test.built_file_basename('a_module', test.LOADABLE_MODULE), chdir=CHDIR)
21
22 test.pass_test()
OLDNEW
« no previous file with comments | « pylib/gyp/generator/ninja.py ('k') | test/dependencies/module-dep/a.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698