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

Side by Side Diff: chrome/chrome.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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 # Define the common dependencies that contain all the actual 9 # Define the common dependencies that contain all the actual
10 # Chromium functionality. This list gets pulled in below by 10 # Chromium functionality. This list gets pulled in below by
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 }, { 136 }, {
137 'use_syncapi_stub%': 1, 137 'use_syncapi_stub%': 1,
138 }], 138 }],
139 ], 139 ],
140 }, { 140 }, {
141 'chrome_personalization%': 0, 141 'chrome_personalization%': 0,
142 'use_syncapi_stub%': 1, 142 'use_syncapi_stub%': 1,
143 }], 143 }],
144 ], # conditions 144 ], # conditions
145 }, # variables 145 }, # variables
146 'includes': [
147 '../build/common.gypi',
148 ],
149 'target_defaults': { 146 'target_defaults': {
150 'sources/': [ 147 'sources/': [
151 ['exclude', '/(cocoa|gtk|win)/'], 148 ['exclude', '/(cocoa|gtk|win)/'],
152 ['exclude', '_(cocoa|gtk|linux|mac|posix|skia|win|views|x)(_unittest)?\\.( cc|mm?)$'], 149 ['exclude', '_(cocoa|gtk|linux|mac|posix|skia|win|views|x)(_unittest)?\\.( cc|mm?)$'],
153 ['exclude', '/(gtk|win|x11)_[^/]*\\.cc$'], 150 ['exclude', '/(gtk|win|x11)_[^/]*\\.cc$'],
154 ], 151 ],
155 'conditions': [ 152 'conditions': [
156 ['OS=="linux" or OS=="freebsd"', {'sources/': [ 153 ['OS=="linux" or OS=="freebsd"', {'sources/': [
157 ['include', '/gtk/'], 154 ['include', '/gtk/'],
158 ['include', '_(gtk|linux|posix|skia|x)(_unittest)?\\.cc$'], 155 ['include', '_(gtk|linux|posix|skia|x)(_unittest)?\\.cc$'],
(...skipping 5934 matching lines...) Expand 10 before | Expand all | Expand 10 after
6093 # Use outputs of this action as inputs for the main target build. 6090 # Use outputs of this action as inputs for the main target build.
6094 # Seems as a misnomer but makes this happy on Linux (scons). 6091 # Seems as a misnomer but makes this happy on Linux (scons).
6095 'process_outputs_as_sources': 1, 6092 'process_outputs_as_sources': 1,
6096 }, 6093 },
6097 ], # 'actions' 6094 ], # 'actions'
6098 }, 6095 },
6099 ] 6096 ]
6100 }], 6097 }],
6101 ], # 'conditions' 6098 ], # 'conditions'
6102 } 6099 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698