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

Unified Diff: test/analyzer/test.gyp

Issue 481433003: Makes the analyzer output the set of targets needing a build (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: review feedback Created 6 years, 4 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/analyzer/gyptest-analyzer.py ('k') | test/analyzer/test3.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/analyzer/test.gyp
===================================================================
--- test/analyzer/test.gyp (revision 1965)
+++ test/analyzer/test.gyp (working copy)
@@ -2,6 +2,36 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+# These gyp files create the following dependencies:
+#
+# test.gyp:
+# #exe -> subdir/subdir.gyp#foo, subdir/subdir2/subdir2.gyp#subdir2
+# foo.c
+# subdir/subdir_source2.c
+# conditional_source.c (if test_variable==1)
+# action_input.c
+# action_output.c
+# rule_input.c
+# rule_output.pdf
+# #exe2
+# exe2.c
+# #exe3 -> subdir/subdir.gyp#foo, subdir/subdir.gyp#subdir2a
+# exe3.c
+# #all (type none) -> exe, exe3
+#
+# subdir/subdir.gyp
+# #foo
+# subdir/subdir_source.c
+# parent_source.c
+# #subdir2a -> subdir2b
+# subdir/subdir2_source.c
+# #subdir2b
+# subdir/subdir2b_source.c
+#
+# subdir/subdir2/subdir2.gyp
+# #subdir2
+# subdir/subdir_source.h
+
{
'variables': {
'test_variable%': 0,
@@ -73,7 +103,7 @@
},
{
'target_name': 'all',
- 'type': 'executable',
+ 'type': 'none',
'dependencies': [
'exe',
'exe3',
« no previous file with comments | « test/analyzer/gyptest-analyzer.py ('k') | test/analyzer/test3.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698