1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
--- ./chrome/chrome_browser.gypi.orig 2014-04-24 22:35:13.000000000 +0200
+++ ./chrome/chrome_browser.gypi 2014-04-24 23:23:43.000000000 +0200
@@ -2949,7 +2949,7 @@
'../device/media_transfer_protocol/media_transfer_protocol.gyp:device_media_transfer_protocol',
],
}],
- ['OS=="linux" and chromeos==0', {
+ ['(OS=="linux" and chromeos==0) or os_bsd==1', {
'dependencies': [
'../build/linux/system.gyp:libspeechd',
],
@@ -3077,7 +3077,7 @@
'../build/linux/system.gyp:xscrnsaver',
],
}],
- ['os_posix == 1 and OS != "mac" and OS != "ios"', {
+ ['os_posix == 1 and OS != "mac" and OS != "ios" and os_bsd != 1', {
'sources': [
'app/chrome_breakpad_client.cc',
'app/chrome_breakpad_client.h',
@@ -3345,6 +3345,25 @@
['exclude', '^third_party/mozilla_security_manager/'],
],
}],
+ ['os_bsd==1', {
+ 'sources/': [
+ ['exclude', '^browser/chrome_browser_main_linux.cc'],
+ ['exclude', '^browser/chrome_browser_main_linux.h'],
+ ['exclude', '^browser/media_galleries/linux/'],
+ ['exclude', '^browser/storage_monitor/media_transfer_protocol_device_observer_linux.cc'],
+ ['exclude', '^browser/storage_monitor/media_transfer_protocol_device_observer_linux.h'],
+ ['exclude', '^browser/storage_monitor/removable_device_notifications_linux.cc'],
+ ['exclude', '^browser/storage_monitor/removable_device_notifications_linux.h'],
+ ['exclude', '^browser/storage_monitor/storage_monitor_linux.cc'],
+ ['exclude', '^browser/storage_monitor/storage_monitor_linux.h'],
+ ['exclude', '^browser/storage_monitor/udev_util_linux.cc'],
+ ['exclude', '^browser/storage_monitor/udev_util_linux.h'],
+ ['exclude', '^browser/storage_monitor/test_media_transfer_protocol_manager_linux.cc'],
+ ['exclude', '^browser/storage_monitor/test_media_transfer_protocol_manager_linux.h'],
+ ['exclude', '^browser/storage_monitor/mtab_watcher_linux.cc'],
+ ['exclude', '^browser/storage_monitor/mtab_watcher_linux.h'],
+ ],
+ }],
['OS=="mac"', {
'dependencies': [
'../third_party/google_toolbox_for_mac/google_toolbox_for_mac.gyp:google_toolbox_for_mac',
|