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

Side by Side Diff: build/util/build_util.gyp

Issue 206006: Force inclusion of build/common.gypi for all chromium gyp files. (Closed)
Patch Set: 2nd round of feedback Created 11 years, 3 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
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698