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 | 8 |
9 'variables': { | 9 'variables': { |
10 'version_py_path': 'tools/build/version.py', | 10 'version_py_path': 'tools/build/version.py', |
(...skipping 2489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2500 ], | 2500 ], |
2501 'include_dirs': [ | 2501 'include_dirs': [ |
2502 # breakpad_linux.cc wants file_version_info_linux.h | 2502 # breakpad_linux.cc wants file_version_info_linux.h |
2503 '<(SHARED_INTERMEDIATE_DIR)', | 2503 '<(SHARED_INTERMEDIATE_DIR)', |
2504 ], | 2504 ], |
2505 }, { # linux_breakpad==0 | 2505 }, { # linux_breakpad==0 |
2506 'sources': [ | 2506 'sources': [ |
2507 'browser/renderer_host/render_crash_handler_host_linux_stub.cc', | 2507 'browser/renderer_host/render_crash_handler_host_linux_stub.cc', |
2508 ], | 2508 ], |
2509 }], | 2509 }], |
2510 ['linux_sandbox_path != ""', { | |
2511 'defines': [ | |
2512 'LINUX_SANDBOX_PATH="<(linux_sandbox_path)"', | |
2513 ], | |
2514 }], | |
2515 ], | 2510 ], |
2516 }], | 2511 }], |
2517 ['OS=="linux" and toolkit_views==0', { | 2512 ['OS=="linux" and toolkit_views==0', { |
2518 'sources!': [ | 2513 'sources!': [ |
2519 'browser/bookmarks/bookmark_drop_info.cc', | 2514 'browser/bookmarks/bookmark_drop_info.cc', |
2520 'browser/views/autocomplete/autocomplete_popup_gtk.cc', | 2515 'browser/views/autocomplete/autocomplete_popup_gtk.cc', |
2521 'browser/views/autocomplete/autocomplete_popup_gtk.h' | 2516 'browser/views/autocomplete/autocomplete_popup_gtk.h' |
2522 ], | 2517 ], |
2523 }], | 2518 }], |
2524 ['OS=="freebsd"', { | 2519 ['OS=="freebsd"', { |
(...skipping 1214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3739 ['branding=="Chrome"', { | 3734 ['branding=="Chrome"', { |
3740 'dependencies': [ | 3735 'dependencies': [ |
3741 'installer/installer.gyp:installer_util', | 3736 'installer/installer.gyp:installer_util', |
3742 ], | 3737 ], |
3743 }], | 3738 }], |
3744 ['selinux==0', { | 3739 ['selinux==0', { |
3745 'dependencies': [ | 3740 'dependencies': [ |
3746 '../sandbox/sandbox.gyp:sandbox', | 3741 '../sandbox/sandbox.gyp:sandbox', |
3747 ], | 3742 ], |
3748 }], | 3743 }], |
| 3744 ['linux_sandbox_path != ""', { |
| 3745 'defines': [ |
| 3746 'LINUX_SANDBOX_PATH="<(linux_sandbox_path)"', |
| 3747 ], |
| 3748 }], |
3749 ], | 3749 ], |
3750 }], | 3750 }], |
3751 ['OS=="mac" or OS=="win"', { | 3751 ['OS=="mac" or OS=="win"', { |
3752 'dependencies': [ | 3752 'dependencies': [ |
3753 # On Windows and Mac, make sure we've built chrome_dll, which | 3753 # On Windows and Mac, make sure we've built chrome_dll, which |
3754 # contains all of the library code with Chromium functionality. | 3754 # contains all of the library code with Chromium functionality. |
3755 'chrome_dll', | 3755 'chrome_dll', |
3756 ], | 3756 ], |
3757 }], | 3757 }], |
3758 ['OS=="win"', { | 3758 ['OS=="win"', { |
(...skipping 3200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6959 ] | 6959 ] |
6960 }], | 6960 }], |
6961 ], # 'conditions' | 6961 ], # 'conditions' |
6962 } | 6962 } |
6963 | 6963 |
6964 # Local Variables: | 6964 # Local Variables: |
6965 # tab-width:2 | 6965 # tab-width:2 |
6966 # indent-tabs-mode:nil | 6966 # indent-tabs-mode:nil |
6967 # End: | 6967 # End: |
6968 # vim: set expandtab tabstop=2 shiftwidth=2: | 6968 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |