| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'browser', | 8 'target_name': 'browser', |
| 9 'type': '<(library)', | 9 'type': '<(library)', |
| 10 'msvs_guid': '5BF908A7-68FB-4A4B-99E3-8C749F1FE4EA', | 10 'msvs_guid': '5BF908A7-68FB-4A4B-99E3-8C749F1FE4EA', |
| (...skipping 2178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2189 'dependencies': [ | 2189 'dependencies': [ |
| 2190 # Temporarily disabled while we figure some stuff out. | 2190 # Temporarily disabled while we figure some stuff out. |
| 2191 # http://code.google.com/p/chromium/issues/detail?id=12351 | 2191 # http://code.google.com/p/chromium/issues/detail?id=12351 |
| 2192 # '../build/linux/system.gyp:dbus-glib', | 2192 # '../build/linux/system.gyp:dbus-glib', |
| 2193 # '../build/linux/system.gyp:gnome-keyring', | 2193 # '../build/linux/system.gyp:gnome-keyring', |
| 2194 '../build/linux/system.gyp:gtk', | 2194 '../build/linux/system.gyp:gtk', |
| 2195 '../build/linux/system.gyp:gtkprint', | 2195 '../build/linux/system.gyp:gtkprint', |
| 2196 '../build/linux/system.gyp:nss', | 2196 '../build/linux/system.gyp:nss', |
| 2197 '../base/base.gyp:linux_versioninfo', | 2197 '../base/base.gyp:linux_versioninfo', |
| 2198 ], | 2198 ], |
| 2199 'link_settings': { |
| 2200 'libraries': [ |
| 2201 # For dlsym() in 'browser/zygote_main_linux.cc' |
| 2202 '-ldl', |
| 2203 ], |
| 2204 }, |
| 2199 'sources!': [ | 2205 'sources!': [ |
| 2200 # Exclude extension shelf for toolstrips. | 2206 # Exclude extension shelf for toolstrips. |
| 2201 'browser/views/extensions/extension_shelf.cc', | 2207 'browser/views/extensions/extension_shelf.cc', |
| 2202 'browser/views/extensions/extension_shelf.h', | 2208 'browser/views/extensions/extension_shelf.h', |
| 2203 'browser/views/extensions/extension_view.cc', | 2209 'browser/views/extensions/extension_view.cc', |
| 2204 'browser/views/extensions/extension_view.h', | 2210 'browser/views/extensions/extension_view.h', |
| 2205 # Windows-specific files. | 2211 # Windows-specific files. |
| 2206 'browser/password_manager/password_store_win.cc', | 2212 'browser/password_manager/password_store_win.cc', |
| 2207 'browser/password_manager/password_store_win.h', | 2213 'browser/password_manager/password_store_win.h', |
| 2208 ], | 2214 ], |
| (...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2789 ], | 2795 ], |
| 2790 }, | 2796 }, |
| 2791 ], | 2797 ], |
| 2792 } | 2798 } |
| 2793 | 2799 |
| 2794 # Local Variables: | 2800 # Local Variables: |
| 2795 # tab-width:2 | 2801 # tab-width:2 |
| 2796 # indent-tabs-mode:nil | 2802 # indent-tabs-mode:nil |
| 2797 # End: | 2803 # End: |
| 2798 # vim: set expandtab tabstop=2 shiftwidth=2: | 2804 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |