OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 The Chromium Authors. 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 { | 5 { |
6 'includes': [ | |
7 '../common.gypi', | |
8 ], | |
9 'targets': [ | 6 'targets': [ |
10 { | 7 { |
11 'target_name': 'lastchange', | 8 'target_name': 'lastchange', |
12 'type': 'none', | 9 'type': 'none', |
13 'variables': { | 10 'variables': { |
14 'lastchange_out_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE', | 11 'lastchange_out_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE', |
15 'default_lastchange_path': '../LASTCHANGE.in', | 12 'default_lastchange_path': '../LASTCHANGE.in', |
16 }, | 13 }, |
17 'actions': [ | 14 'actions': [ |
18 { | 15 { |
(...skipping 12 matching lines...) Expand all Loading... |
31 '-o', '<(lastchange_out_path)', | 28 '-o', '<(lastchange_out_path)', |
32 '-d', '<(default_lastchange_path)', | 29 '-d', '<(default_lastchange_path)', |
33 ], | 30 ], |
34 'message': 'Extracting last change to <(lastchange_out_path)', | 31 'message': 'Extracting last change to <(lastchange_out_path)', |
35 'process_outputs_as_sources': '1', | 32 'process_outputs_as_sources': '1', |
36 }, | 33 }, |
37 ], | 34 ], |
38 }, | 35 }, |
39 ] | 36 ] |
40 } | 37 } |
OLD | NEW |