summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorjoth@chromium.org <joth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-12 14:00:00 +0000
committerjoth@chromium.org <joth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-12 14:00:00 +0000
commit4de38a38c5eb01cf6bd11dcadc93edb99272a7da (patch)
tree88fa46be69ed44b23da69c0b0bc60c09a570a979 /build
parentc822b0f0ea0e349841ff2db0393d9a9b96e60712 (diff)
downloadchromium_src-4de38a38c5eb01cf6bd11dcadc93edb99272a7da.zip
chromium_src-4de38a38c5eb01cf6bd11dcadc93edb99272a7da.tar.gz
chromium_src-4de38a38c5eb01cf6bd11dcadc93edb99272a7da.tar.bz2
First cut at implementing wifi bindigns for linux, using glib-dbus to NetworkManager
NOTE: Adds a new build dependency on dbus-glib, on ubuntu you can meet this with: $ sudo aptitude install dbus-glib-1-dev BUG=http://crbug.com/37199 TEST=use browser with --enable-geolocation Review URL: http://codereview.chromium.org/787003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41430 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r--build/linux/system.gyp34
1 files changed, 17 insertions, 17 deletions
diff --git a/build/linux/system.gyp b/build/linux/system.gyp
index e6336f5..4176719 100644
--- a/build/linux/system.gyp
+++ b/build/linux/system.gyp
@@ -274,23 +274,23 @@
# ],
# },
# },
-# {
-# 'target_name': 'dbus-glib',
-# 'type': 'settings',
-# 'direct_dependent_settings': {
-# 'cflags': [
-# '<!@(<(pkg-config) --cflags dbus-glib-1)',
-# ],
-# },
-# 'link_settings': {
-# 'ldflags': [
-# '<!@(<(pkg-config) --libs-only-L --libs-only-other dbus-glib-1)',
-# ],
-# 'libraries': [
-# '<!@(<(pkg-config) --libs-only-l dbus-glib-1)',
-# ],
-# },
-# },
+ {
+ 'target_name': 'dbus-glib',
+ 'type': 'settings',
+ 'direct_dependent_settings': {
+ 'cflags': [
+ '<!@(<(pkg-config) --cflags dbus-glib-1)',
+ ],
+ },
+ 'link_settings': {
+ 'ldflags': [
+ '<!@(<(pkg-config) --libs-only-L --libs-only-other dbus-glib-1)',
+ ],
+ 'libraries': [
+ '<!@(<(pkg-config) --libs-only-l dbus-glib-1)',
+ ],
+ },
+ },
],
}