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