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 1828 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1839 # breakpad_linux.cc wants file_version_info_linux.h | 1839 # breakpad_linux.cc wants file_version_info_linux.h |
1840 '<(SHARED_INTERMEDIATE_DIR)', | 1840 '<(SHARED_INTERMEDIATE_DIR)', |
1841 ], | 1841 ], |
1842 }, { | 1842 }, { |
1843 'sources': [ | 1843 'sources': [ |
1844 'browser/renderer_host/render_crash_handler_host_linux_stub.cc', | 1844 'browser/renderer_host/render_crash_handler_host_linux_stub.cc', |
1845 'app/breakpad_linux_stub.cc', | 1845 'app/breakpad_linux_stub.cc', |
1846 'app/breakpad_linux.h', | 1846 'app/breakpad_linux.h', |
1847 ], | 1847 ], |
1848 }], | 1848 }], |
| 1849 ['linux_sandbox_path!=""', { |
| 1850 'defines': [ |
| 1851 'LINUX_SANDBOX_PATH="<(linux_sandbox_path)"' |
| 1852 ], |
| 1853 }], |
1849 ], | 1854 ], |
1850 }], | 1855 }], |
1851 ['OS=="linux" and toolkit_views==0', { | 1856 ['OS=="linux" and toolkit_views==0', { |
1852 'sources!': [ | 1857 'sources!': [ |
1853 'browser/bookmarks/bookmark_drop_info.cc', | 1858 'browser/bookmarks/bookmark_drop_info.cc', |
1854 ], | 1859 ], |
1855 }], | 1860 }], |
1856 ['OS=="mac"', { | 1861 ['OS=="mac"', { |
1857 'sources!': [ | 1862 'sources!': [ |
1858 'browser/automation/automation_provider_list_generic.cc', | 1863 'browser/automation/automation_provider_list_generic.cc', |
(...skipping 3162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5021 # Use outputs of this action as inputs for the main target build. | 5026 # Use outputs of this action as inputs for the main target build. |
5022 # Seems as a misnomer but makes this happy on Linux (scons). | 5027 # Seems as a misnomer but makes this happy on Linux (scons). |
5023 'process_outputs_as_sources': 1, | 5028 'process_outputs_as_sources': 1, |
5024 }, | 5029 }, |
5025 ], # 'actions' | 5030 ], # 'actions' |
5026 }, | 5031 }, |
5027 ] | 5032 ] |
5028 }], | 5033 }], |
5029 ], # 'conditions' | 5034 ], # 'conditions' |
5030 } | 5035 } |
OLD | NEW |