Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(253)

Side by Side Diff: chrome/chrome_browser.gypi

Issue 7835021: Linux: use our spiffy new DBus client library for KWallet, instead of dbus-glib. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
(...skipping 3980 matching lines...) Expand 10 before | Expand all | Expand 10 after
3991 ['webui_dialogs == 1', { 3991 ['webui_dialogs == 1', {
3992 'sources/': [ 3992 'sources/': [
3993 ['exclude', '^browser/ui/gtk/certificate_viewer.cc'], 3993 ['exclude', '^browser/ui/gtk/certificate_viewer.cc'],
3994 ['exclude', '^browser/ui/gtk/certificate_viewer.h'], 3994 ['exclude', '^browser/ui/gtk/certificate_viewer.h'],
3995 ['exclude', '^browser/ui/gtk/hung_renderer_dialog_gtk.cc'], 3995 ['exclude', '^browser/ui/gtk/hung_renderer_dialog_gtk.cc'],
3996 ['exclude', '^browser/ui/gtk/hung_renderer_dialog_gtk.h'], 3996 ['exclude', '^browser/ui/gtk/hung_renderer_dialog_gtk.h'],
3997 ], 3997 ],
3998 }], 3998 }],
3999 ['toolkit_uses_gtk == 1', { 3999 ['toolkit_uses_gtk == 1', {
4000 'dependencies': [ 4000 'dependencies': [
4001 '../build/linux/system.gyp:dbus-glib', 4001 '../build/linux/system.gyp:dbus',
4002 '../build/linux/system.gyp:gconf', 4002 '../build/linux/system.gyp:gconf',
4003 '../build/linux/system.gyp:gtk', 4003 '../build/linux/system.gyp:gtk',
4004 '../build/linux/system.gyp:gtkprint', 4004 '../build/linux/system.gyp:gtkprint',
4005 '../build/linux/system.gyp:ssl', 4005 '../build/linux/system.gyp:ssl',
4006 '../build/linux/system.gyp:x11', 4006 '../build/linux/system.gyp:x11',
4007 '../dbus/dbus.gyp:dbus',
4007 '../third_party/undoview/undoview.gyp:undoview', 4008 '../third_party/undoview/undoview.gyp:undoview',
4008 ], 4009 ],
4009 'link_settings': { 4010 'link_settings': {
4010 'libraries': [ 4011 'libraries': [
4011 # For dlsym() in 'browser/zygote_main_linux.cc' 4012 # For dlsym() in 'browser/zygote_main_linux.cc'
4012 '-ldl', 4013 '-ldl',
4013 ], 4014 ],
4014 }, 4015 },
4015 'sources!': [ 4016 'sources!': [
4016 'browser/ui/views/extensions/extension_view.cc', 4017 'browser/ui/views/extensions/extension_view.cc',
(...skipping 923 matching lines...) Expand 10 before | Expand all | Expand 10 after
4940 # weak imports in dependents, who still must #include 4941 # weak imports in dependents, who still must #include
4941 # closure_blocks_leopard_compat.h to get weak imports. 4942 # closure_blocks_leopard_compat.h to get weak imports.
4942 'type': 'none', 4943 'type': 'none',
4943 }], 4944 }],
4944 ], 4945 ],
4945 }, 4946 },
4946 ], 4947 ],
4947 }], 4948 }],
4948 ], 4949 ],
4949 } 4950 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698