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

Side by Side Diff: chrome/chrome.gyp

Issue 115821: *_views.cc files were not getting re-included in the gyp Windows build.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 7 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 | « no previous file | 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) 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 # Define the common dependencies that contain all the actual 8 # Define the common dependencies that contain all the actual
9 # Chromium functionality. This list gets pulled in below by 9 # Chromium functionality. This list gets pulled in below by
10 # the link of the actual chrome (or chromium) executable on 10 # the link of the actual chrome (or chromium) executable on
(...skipping 24 matching lines...) Expand all
35 ]}], 35 ]}],
36 ['OS=="mac"', {'sources/': [ 36 ['OS=="mac"', {'sources/': [
37 ['include', '/cocoa/'], 37 ['include', '/cocoa/'],
38 ['include', '_(cocoa|mac|posix)(_unittest)?\\.(cc|mm?)$'], 38 ['include', '_(cocoa|mac|posix)(_unittest)?\\.(cc|mm?)$'],
39 ]}, { # else: OS != "mac" 39 ]}, { # else: OS != "mac"
40 'sources/': [ 40 'sources/': [
41 ['exclude', '\\.mm?$'], 41 ['exclude', '\\.mm?$'],
42 ], 42 ],
43 }], 43 }],
44 ['OS=="win"', {'sources/': [ 44 ['OS=="win"', {'sources/': [
45 ['include', '_(win)(_unittest)?\\.cc$'], 45 ['include', '_(views|win)(_unittest)?\\.cc$'],
46 ['include', '/win/'], 46 ['include', '/win/'],
47 ['include', '/(views|win)_[^/]*\\.cc$'], 47 ['include', '/(views|win)_[^/]*\\.cc$'],
48 ]}], 48 ]}],
49 ['OS=="linux" and toolkit_views==1', {'sources/': [ 49 ['OS=="linux" and toolkit_views==1', {'sources/': [
50 ['include', '/views_[^/]*\\.cc$'], 50 ['include', '/views_[^/]*\\.cc$'],
51 ]}], 51 ]}],
52 ], 52 ],
53 }, 53 },
54 'targets': [ 54 'targets': [
55 { 55 {
(...skipping 3827 matching lines...) Expand 10 before | Expand all | Expand 10 after
3883 # Use outputs of this action as inputs for the main target build. 3883 # Use outputs of this action as inputs for the main target build.
3884 # Seems as a misnomer but makes this happy on Linux (scons). 3884 # Seems as a misnomer but makes this happy on Linux (scons).
3885 'process_outputs_as_sources': 1, 3885 'process_outputs_as_sources': 1,
3886 }, 3886 },
3887 ], # 'actions' 3887 ], # 'actions'
3888 }, 3888 },
3889 ] 3889 ]
3890 }], 3890 }],
3891 ], # 'conditions' 3891 ], # 'conditions'
3892 } 3892 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698