| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |