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 3166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3177 'browser/password_manager/native_backend_kwallet_x.h', | 3177 'browser/password_manager/native_backend_kwallet_x.h', |
3178 'browser/password_manager/native_backend_kwallet_x.cc', | 3178 'browser/password_manager/native_backend_kwallet_x.cc', |
3179 'browser/platform_util_linux.cc', | 3179 'browser/platform_util_linux.cc', |
3180 ], | 3180 ], |
3181 'link_settings': { | 3181 'link_settings': { |
3182 'libraries': [ | 3182 'libraries': [ |
3183 '-lpulse', | 3183 '-lpulse', |
3184 ], | 3184 ], |
3185 }, | 3185 }, |
3186 }], | 3186 }], |
| 3187 ['use_gnome_keyring==0', { |
| 3188 'sources!': [ |
| 3189 'browser/password_manager/native_backend_gnome_x.h', |
| 3190 'browser/password_manager/native_backend_gnome_x.cc', |
| 3191 ], |
| 3192 }], |
3187 ['touchui==0', { | 3193 ['touchui==0', { |
3188 'sources!': [ | 3194 'sources!': [ |
3189 # Nothing yet. | 3195 # Nothing yet. |
3190 ], | 3196 ], |
3191 }], | 3197 }], |
3192 ['OS=="linux"', { | 3198 ['OS=="linux"', { |
3193 'dependencies': [ | 3199 'dependencies': [ |
3194 '../build/linux/system.gyp:dbus-glib', | 3200 '../build/linux/system.gyp:dbus-glib', |
3195 '../build/linux/system.gyp:gconf', | 3201 '../build/linux/system.gyp:gconf', |
3196 '../build/linux/system.gyp:gtk', | 3202 '../build/linux/system.gyp:gtk', |
(...skipping 14 matching lines...) Expand all Loading... |
3211 'browser/crash_handler_host_linux.h', | 3217 'browser/crash_handler_host_linux.h', |
3212 'browser/net/ssl_config_service_manager_pref.cc', | 3218 'browser/net/ssl_config_service_manager_pref.cc', |
3213 'third_party/mozilla_security_manager/nsNSSCertHelper.cpp', | 3219 'third_party/mozilla_security_manager/nsNSSCertHelper.cpp', |
3214 'third_party/mozilla_security_manager/nsNSSCertHelper.h', | 3220 'third_party/mozilla_security_manager/nsNSSCertHelper.h', |
3215 'third_party/mozilla_security_manager/nsNSSCertificate.cpp', | 3221 'third_party/mozilla_security_manager/nsNSSCertificate.cpp', |
3216 'third_party/mozilla_security_manager/nsNSSCertificate.h', | 3222 'third_party/mozilla_security_manager/nsNSSCertificate.h', |
3217 'third_party/mozilla_security_manager/nsUsageArrayHelper.cpp', | 3223 'third_party/mozilla_security_manager/nsUsageArrayHelper.cpp', |
3218 'third_party/mozilla_security_manager/nsUsageArrayHelper.h', | 3224 'third_party/mozilla_security_manager/nsUsageArrayHelper.h', |
3219 ], | 3225 ], |
3220 'conditions': [ | 3226 'conditions': [ |
3221 ['chromeos==0', { | 3227 ['use_gnome_keyring==1', { |
3222 'dependencies': [ | 3228 'dependencies': [ |
3223 '../build/linux/system.gyp:gnome-keyring', | 3229 '../build/linux/system.gyp:gnome-keyring', |
3224 ], | 3230 ], |
3225 }], | 3231 }], |
3226 ['linux_breakpad==1', { | 3232 ['linux_breakpad==1', { |
3227 'sources': [ | 3233 'sources': [ |
3228 'app/breakpad_linux.cc', | 3234 'app/breakpad_linux.cc', |
3229 'app/breakpad_linux.h', | 3235 'app/breakpad_linux.h', |
3230 'browser/crash_handler_host_linux.cc', | 3236 'browser/crash_handler_host_linux.cc', |
3231 ], | 3237 ], |
(...skipping 767 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3999 ], | 4005 ], |
4000 }, | 4006 }, |
4001 ], | 4007 ], |
4002 } | 4008 } |
4003 | 4009 |
4004 # Local Variables: | 4010 # Local Variables: |
4005 # tab-width:2 | 4011 # tab-width:2 |
4006 # indent-tabs-mode:nil | 4012 # indent-tabs-mode:nil |
4007 # End: | 4013 # End: |
4008 # vim: set expandtab tabstop=2 shiftwidth=2: | 4014 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |