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

Side by Side Diff: test/analyzer/test.gyp

Issue 1088163002: Analyzer didn't match correctly targets that defined path to inputs with '.' (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Rebased to fresh master. Created 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « test/analyzer/gyptest-analyzer.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2014 Google Inc. All rights reserved. 1 # Copyright (c) 2014 Google Inc. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # These gyp files create the following dependencies: 5 # These gyp files create the following dependencies:
6 # 6 #
7 # test.gyp: 7 # test.gyp:
8 # #exe -> subdir/subdir.gyp#foo, subdir/subdir2/subdir2.gyp#subdir2 8 # #exe -> subdir/subdir.gyp#foo, subdir/subdir2/subdir2.gyp#subdir2
9 # foo.c 9 # foo.c
10 # subdir/subdir_source2.c 10 # subdir/subdir_source2.c
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 }], 57 }],
58 ], 58 ],
59 'actions': [ 59 'actions': [
60 { 60 {
61 'action_name': 'action', 61 'action_name': 'action',
62 'inputs': [ 62 'inputs': [
63 '<(PRODUCT_DIR)/product_dir_input.c', 63 '<(PRODUCT_DIR)/product_dir_input.c',
64 'action_input.c', 64 'action_input.c',
65 '../bad_path1.h', 65 '../bad_path1.h',
66 '../../bad_path2.h', 66 '../../bad_path2.h',
67 './rel_path1.h',
67 ], 68 ],
68 'outputs': [ 69 'outputs': [
69 'action_output.c', 70 'action_output.c',
70 ], 71 ],
71 }, 72 },
72 ], 73 ],
73 'rules': [ 74 'rules': [
74 { 75 {
75 'rule_name': 'rule', 76 'rule_name': 'rule',
76 'extension': 'pdf', 77 'extension': 'pdf',
(...skipping 27 matching lines...) Expand all
104 { 105 {
105 'target_name': 'all', 106 'target_name': 'all',
106 'type': 'none', 107 'type': 'none',
107 'dependencies': [ 108 'dependencies': [
108 'exe', 109 'exe',
109 'exe3', 110 'exe3',
110 ], 111 ],
111 }, 112 },
112 ], 113 ],
113 } 114 }
OLDNEW
« no previous file with comments | « test/analyzer/gyptest-analyzer.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698