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 1545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1556 'CHROME_V8', | 1556 'CHROME_V8', |
1557 ], | 1557 ], |
1558 }], | 1558 }], |
1559 ['OS=="linux"', { | 1559 ['OS=="linux"', { |
1560 'dependencies': [ | 1560 'dependencies': [ |
1561 '../build/linux/system.gyp:gtk', | 1561 '../build/linux/system.gyp:gtk', |
1562 ], | 1562 ], |
1563 'sources!': [ | 1563 'sources!': [ |
1564 'browser/debugger/debugger_shell_stubs.cc', | 1564 'browser/debugger/debugger_shell_stubs.cc', |
1565 # Windows-specific files. | 1565 # Windows-specific files. |
1566 'browser/download/download_exe.cc', | |
1567 ], | 1566 ], |
1568 'conditions': [ | 1567 'conditions': [ |
1569 ['linux_breakpad==1', { | 1568 ['linux_breakpad==1', { |
1570 'sources': [ | 1569 'sources': [ |
1571 'browser/renderer_host/render_crash_handler_host_linux.cc', | 1570 'browser/renderer_host/render_crash_handler_host_linux.cc', |
1572 'app/breakpad_linux.cc', | 1571 'app/breakpad_linux.cc', |
1573 'app/breakpad_linux.h', | 1572 'app/breakpad_linux.h', |
1574 ], | 1573 ], |
1575 'dependencies': [ | 1574 'dependencies': [ |
1576 '../breakpad/breakpad.gyp:breakpad_client', | 1575 '../breakpad/breakpad.gyp:breakpad_client', |
(...skipping 2309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3886 # Use outputs of this action as inputs for the main target build. | 3885 # Use outputs of this action as inputs for the main target build. |
3887 # Seems as a misnomer but makes this happy on Linux (scons). | 3886 # Seems as a misnomer but makes this happy on Linux (scons). |
3888 'process_outputs_as_sources': 1, | 3887 'process_outputs_as_sources': 1, |
3889 }, | 3888 }, |
3890 ], # 'actions' | 3889 ], # 'actions' |
3891 }, | 3890 }, |
3892 ] | 3891 ] |
3893 }], | 3892 }], |
3894 ], # 'conditions' | 3893 ], # 'conditions' |
3895 } | 3894 } |
OLD | NEW |