| 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 2513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2524 ], | 2524 ], |
| 2525 'include_dirs': [ | 2525 'include_dirs': [ |
| 2526 # breakpad_linux.cc wants file_version_info_linux.h | 2526 # breakpad_linux.cc wants file_version_info_linux.h |
| 2527 '<(SHARED_INTERMEDIATE_DIR)', | 2527 '<(SHARED_INTERMEDIATE_DIR)', |
| 2528 ], | 2528 ], |
| 2529 }, { # linux_breakpad==0 | 2529 }, { # linux_breakpad==0 |
| 2530 'sources': [ | 2530 'sources': [ |
| 2531 'browser/renderer_host/render_crash_handler_host_linux_stub.cc', | 2531 'browser/renderer_host/render_crash_handler_host_linux_stub.cc', |
| 2532 ], | 2532 ], |
| 2533 }], | 2533 }], |
| 2534 ['linux_sandbox_path != ""', { |
| 2535 'defines': [ |
| 2536 'LINUX_SANDBOX_PATH="<(linux_sandbox_path)"', |
| 2537 ], |
| 2538 }], |
| 2534 ], | 2539 ], |
| 2535 }], | 2540 }], |
| 2536 ['OS=="linux" and toolkit_views==0', { | 2541 ['OS=="linux" and toolkit_views==0', { |
| 2537 'sources!': [ | 2542 'sources!': [ |
| 2538 'browser/bookmarks/bookmark_drop_info.cc', | 2543 'browser/bookmarks/bookmark_drop_info.cc', |
| 2539 'browser/views/autocomplete/autocomplete_popup_gtk.cc', | 2544 'browser/views/autocomplete/autocomplete_popup_gtk.cc', |
| 2540 'browser/views/autocomplete/autocomplete_popup_gtk.h' | 2545 'browser/views/autocomplete/autocomplete_popup_gtk.h' |
| 2541 ], | 2546 ], |
| 2542 }], | 2547 }], |
| 2543 ['OS=="freebsd"', { | 2548 ['OS=="freebsd"', { |
| (...skipping 1229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3773 ['branding=="Chrome"', { | 3778 ['branding=="Chrome"', { |
| 3774 'dependencies': [ | 3779 'dependencies': [ |
| 3775 'installer/installer.gyp:installer_util', | 3780 'installer/installer.gyp:installer_util', |
| 3776 ], | 3781 ], |
| 3777 }], | 3782 }], |
| 3778 ['selinux==0', { | 3783 ['selinux==0', { |
| 3779 'dependencies': [ | 3784 'dependencies': [ |
| 3780 '../sandbox/sandbox.gyp:sandbox', | 3785 '../sandbox/sandbox.gyp:sandbox', |
| 3781 ], | 3786 ], |
| 3782 }], | 3787 }], |
| 3783 ['linux_sandbox_path != ""', { | |
| 3784 'defines': [ | |
| 3785 'LINUX_SANDBOX_PATH="<(linux_sandbox_path)"', | |
| 3786 ], | |
| 3787 }], | |
| 3788 ], | 3788 ], |
| 3789 }], | 3789 }], |
| 3790 ['OS=="mac" or OS=="win"', { | 3790 ['OS=="mac" or OS=="win"', { |
| 3791 'dependencies': [ | 3791 'dependencies': [ |
| 3792 # On Windows and Mac, make sure we've built chrome_dll, which | 3792 # On Windows and Mac, make sure we've built chrome_dll, which |
| 3793 # contains all of the library code with Chromium functionality. | 3793 # contains all of the library code with Chromium functionality. |
| 3794 'chrome_dll', | 3794 'chrome_dll', |
| 3795 ], | 3795 ], |
| 3796 }], | 3796 }], |
| 3797 ['OS=="win"', { | 3797 ['OS=="win"', { |
| (...skipping 3145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6943 ] | 6943 ] |
| 6944 }], | 6944 }], |
| 6945 ], # 'conditions' | 6945 ], # 'conditions' |
| 6946 } | 6946 } |
| 6947 | 6947 |
| 6948 # Local Variables: | 6948 # Local Variables: |
| 6949 # tab-width:2 | 6949 # tab-width:2 |
| 6950 # indent-tabs-mode:nil | 6950 # indent-tabs-mode:nil |
| 6951 # End: | 6951 # End: |
| 6952 # vim: set expandtab tabstop=2 shiftwidth=2: | 6952 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |