| 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 1780 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1791 }], | 1791 }], |
| 1792 ['OS=="linux" and toolkit_views==0', { | 1792 ['OS=="linux" and toolkit_views==0', { |
| 1793 'sources!': [ | 1793 'sources!': [ |
| 1794 'browser/bookmarks/bookmark_drop_info.cc', | 1794 'browser/bookmarks/bookmark_drop_info.cc', |
| 1795 ], | 1795 ], |
| 1796 }], | 1796 }], |
| 1797 ['OS=="mac"', { | 1797 ['OS=="mac"', { |
| 1798 'sources/': [ | 1798 'sources/': [ |
| 1799 # Exclude most of download. | 1799 # Exclude most of download. |
| 1800 ['exclude', '^browser/download/'], | 1800 ['exclude', '^browser/download/'], |
| 1801 ['include', '^browser/download/download_(file|manager|shelf)\\.cc$']
, | 1801 ['include', '^browser/download/download_(file|manager|shelf|util)\\.
cc$'], |
| 1802 ['include', '^browser/download/download_request_manager\\.cc$'], | 1802 ['include', '^browser/download/download_request_manager\\.cc$'], |
| 1803 ['include', '^browser/download/download_item_model\\.cc$'], | 1803 ['include', '^browser/download/download_item_model\\.cc$'], |
| 1804 ['include', '^browser/download/save_(file(_manager)?|item|package)\\
.cc$'], | 1804 ['include', '^browser/download/save_(file(_manager)?|item|package)\\
.cc$'], |
| 1805 ], | 1805 ], |
| 1806 'sources!': [ | 1806 'sources!': [ |
| 1807 'browser/automation/automation_provider_list_generic.cc', | 1807 'browser/automation/automation_provider_list_generic.cc', |
| 1808 'browser/bookmarks/bookmark_context_menu.cc', | 1808 'browser/bookmarks/bookmark_context_menu.cc', |
| 1809 'browser/bookmarks/bookmark_drop_info.cc', | 1809 'browser/bookmarks/bookmark_drop_info.cc', |
| 1810 'browser/dock_info.cc', | 1810 'browser/dock_info.cc', |
| 1811 'browser/login_prompt.cc', | 1811 'browser/login_prompt.cc', |
| (...skipping 3042 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4854 # Use outputs of this action as inputs for the main target build. | 4854 # Use outputs of this action as inputs for the main target build. |
| 4855 # Seems as a misnomer but makes this happy on Linux (scons). | 4855 # Seems as a misnomer but makes this happy on Linux (scons). |
| 4856 'process_outputs_as_sources': 1, | 4856 'process_outputs_as_sources': 1, |
| 4857 }, | 4857 }, |
| 4858 ], # 'actions' | 4858 ], # 'actions' |
| 4859 }, | 4859 }, |
| 4860 ] | 4860 ] |
| 4861 }], | 4861 }], |
| 4862 ], # 'conditions' | 4862 ], # 'conditions' |
| 4863 } | 4863 } |
| OLD | NEW |