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

Side by Side Diff: content/content_browser.gypi

Issue 12385071: Make it possible to disable dbus on linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: minor fixup Created 7 years, 9 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'dependencies': [ 6 'dependencies': [
7 'browser/speech/proto/speech_proto.gyp:speech_proto', 7 'browser/speech/proto/speech_proto.gyp:speech_proto',
8 '../base/base.gyp:base_static', 8 '../base/base.gyp:base_static',
9 '../crypto/crypto.gyp:crypto', 9 '../crypto/crypto.gyp:crypto',
10 '../google_apis/google_apis.gyp:google_apis', 10 '../google_apis/google_apis.gyp:google_apis',
(...skipping 1062 matching lines...) Expand 10 before | Expand all | Expand 10 after
1073 ], 1073 ],
1074 # Set LINUX_SANDBOX_PATH for Linux, including Chrome OS 1074 # Set LINUX_SANDBOX_PATH for Linux, including Chrome OS
1075 'conditions': [ 1075 'conditions': [
1076 ['linux_sandbox_path != ""', { 1076 ['linux_sandbox_path != ""', {
1077 'defines': [ 1077 'defines': [
1078 'LINUX_SANDBOX_PATH="<(linux_sandbox_path)"', 1078 'LINUX_SANDBOX_PATH="<(linux_sandbox_path)"',
1079 ], 1079 ],
1080 }], 1080 }],
1081 ], 1081 ],
1082 }], 1082 }],
1083 ['OS=="linux" and use_dbus==0', {
1084 'sources!': [
1085 'browser/power_save_blocker_linux.cc',
1086 'browser/geolocation/wifi_data_provider_linux.cc',
1087 ],
1088 'sources': [
1089 'browser/power_save_blocker_empty.cc',
joth 2013/03/03 19:43:55 convention is to list all sources up top of file (
Mostyn Bramley-Moore 2013/03/03 21:19:35 Fixed in the latest patchset.
1090 ],
1091 'dependencies!': [
1092 '../build/linux/system.gyp:dbus',
1093 '../dbus/dbus.gyp:dbus',
1094 ],
1095 }],
1096 ['OS!="win" and OS!="mac" and (OS!="linux" or use_dbus==1)', {
joth 2013/03/03 19:43:55 this seems backward. don't we want to remove the n
Mostyn Bramley-Moore 2013/03/03 21:19:35 Whoops- right you are. Fixed in the latest patchs
1097 'sources!': [
1098 'browser/geolocation/empty_device_data_provider.cc',
1099 'browser/geolocation/empty_device_data_provider.h',
1100 ],
1101 }],
1083 ['OS=="linux" and use_aura==1', { 1102 ['OS=="linux" and use_aura==1', {
1084 'dependencies': [ 1103 'dependencies': [
1085 '../build/linux/system.gyp:dbus', 1104 '../build/linux/system.gyp:dbus',
1086 '../build/linux/system.gyp:fontconfig', 1105 '../build/linux/system.gyp:fontconfig',
1087 '../build/linux/system.gyp:x11', 1106 '../build/linux/system.gyp:x11',
1088 '../dbus/dbus.gyp:dbus', 1107 '../dbus/dbus.gyp:dbus',
1089 ], 1108 ],
1090 }], 1109 }],
1091 ['OS=="android"', { 1110 ['OS=="android"', {
1092 'dependencies': [ 1111 'dependencies': [
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
1225 ['exclude', '^browser/speech/'], 1244 ['exclude', '^browser/speech/'],
1226 ], 1245 ],
1227 }], 1246 }],
1228 ['linux_use_libgps==1', { 1247 ['linux_use_libgps==1', {
1229 'dependencies': [ 1248 'dependencies': [
1230 '../build/linux/system.gyp:libgps', 1249 '../build/linux/system.gyp:libgps',
1231 ], 1250 ],
1232 }], 1251 }],
1233 ], 1252 ],
1234 } 1253 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698