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

Unified Diff: content/content_browser.gypi

Issue 12374068: Make it possible to disable udev in linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move USE_UDEV define to a linux-specific spot Created 7 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/gamepad/gamepad_platform_data_fetcher.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/content_browser.gypi
diff --git a/content/content_browser.gypi b/content/content_browser.gypi
index 4032dda06d28d339d6f41fc0efb143be572efc22..34bbc26bcc67aa1b5514e1da72d1afdfc0ee2c77 100644
--- a/content/content_browser.gypi
+++ b/content/content_browser.gypi
@@ -1078,6 +1078,11 @@
'LINUX_SANDBOX_PATH="<(linux_sandbox_path)"',
],
}],
+ ['use_udev == 1', {
+ 'defines': [
+ 'USE_UDEV',
+ ],
+ }],
],
}],
['OS=="linux" and use_aura==1', {
@@ -1139,6 +1144,21 @@
'browser/renderer_host/gtk_key_bindings_handler.h',
],
}],
+ ['OS=="linux" and use_udev==0', {
Lei Zhang 2013/03/05 00:27:24 You can keep this together with the use_udev block
Mostyn Bramley-Moore 2013/11/14 00:26:33 Done.
+ 'sources!': [
+ 'browser/gamepad/gamepad_platform_data_fetcher_linux.cc',
+ 'browser/udev_linux.cc',
+ 'browser/udev_linux.h',
+ 'browser/device_monitor_linux.cc',
+ 'browser/device_monitor_linux.h',
+ ],
+ 'sources': [
+ 'browser/gamepad/gamepad_platform_data_fetcher.cc',
+ ],
+ 'dependencies!': [
+ '../build/linux/system.gyp:udev',
+ ],
+ }],
['os_bsd==1', {
'sources/': [
['exclude', '^browser/gamepad/gamepad_platform_data_fetcher_linux\\.cc$'],
« no previous file with comments | « content/browser/gamepad/gamepad_platform_data_fetcher.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698