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

Side by Side Diff: chrome/chrome_browser_extensions.gypi

Issue 12385071: Make it possible to disable dbus on linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: copyright header date fix 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
« no previous file with comments | « build/common.gypi ('k') | chrome/chrome_browser_ui.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'browser_extensions', 8 'target_name': 'browser_extensions',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 810 matching lines...) Expand 10 before | Expand all | Expand 10 after
821 ['include', '^browser/extensions/api/web_request/web_request_permiss ions.cc'], 821 ['include', '^browser/extensions/api/web_request/web_request_permiss ions.cc'],
822 ['include', '^browser/extensions/api/web_request/web_request_time_tr acker.cc'], 822 ['include', '^browser/extensions/api/web_request/web_request_time_tr acker.cc'],
823 ], 823 ],
824 'dependencies!': [ 824 'dependencies!': [
825 '../device/device.gyp:device_bluetooth', 825 '../device/device.gyp:device_bluetooth',
826 '../third_party/libusb/libusb.gyp:libusb' 826 '../third_party/libusb/libusb.gyp:libusb'
827 ], 827 ],
828 }], 828 }],
829 ['OS=="linux" and use_aura==1', { 829 ['OS=="linux" and use_aura==1', {
830 'dependencies': [ 830 'dependencies': [
831 '../build/linux/system.gyp:dbus',
832 '../build/linux/system.gyp:fontconfig', 831 '../build/linux/system.gyp:fontconfig',
833 '../build/linux/system.gyp:x11', 832 '../build/linux/system.gyp:x11',
834 '../dbus/dbus.gyp:dbus', 833 ],
834 'conditions': [
835 ['use_dbus==1', {
836 'dependencies': [
837 '../build/linux/system.gyp:dbus',
838 '../dbus/dbus.gyp:dbus',
839 ],
840 }],
835 ], 841 ],
836 }], 842 }],
837 ['safe_browsing==1', { 843 ['safe_browsing==1', {
838 'defines': [ 844 'defines': [
839 'FULL_SAFE_BROWSING', 845 'FULL_SAFE_BROWSING',
840 ], 846 ],
841 }], 847 }],
842 ['safe_browsing==2', { 848 ['safe_browsing==2', {
843 'defines': [ 849 'defines': [
844 'MOBILE_SAFE_BROWSING', 850 'MOBILE_SAFE_BROWSING',
845 ], 851 ],
846 }], 852 }],
847 ['toolkit_uses_gtk == 1', { 853 ['toolkit_uses_gtk == 1', {
848 'dependencies': [ 854 'dependencies': [
849 '../build/linux/system.gyp:dbus',
850 '../build/linux/system.gyp:gconf', 855 '../build/linux/system.gyp:gconf',
851 '../build/linux/system.gyp:gtk', 856 '../build/linux/system.gyp:gtk',
852 '../build/linux/system.gyp:gtkprint', 857 '../build/linux/system.gyp:gtkprint',
853 '../build/linux/system.gyp:ssl', 858 '../build/linux/system.gyp:ssl',
854 '../build/linux/system.gyp:x11', 859 '../build/linux/system.gyp:x11',
855 '../dbus/dbus.gyp:dbus',
856 '../third_party/undoview/undoview.gyp:undoview', 860 '../third_party/undoview/undoview.gyp:undoview',
857 ], 861 ],
862 'conditions': [
863 ['use_dbus == 1', {
864 'dependencies': [
865 '../build/linux/system.gyp:dbus',
866 '../dbus/dbus.gyp:dbus',
867 ],
868 }],
869 ],
858 }], 870 }],
859 ['configuration_policy==1', { 871 ['configuration_policy==1', {
860 'dependencies': [ 872 'dependencies': [
861 'app/policy/cloud_policy_codegen.gyp:policy', 873 'app/policy/cloud_policy_codegen.gyp:policy',
862 ], 874 ],
863 }, { # configuration_policy==0 875 }, { # configuration_policy==0
864 'sources!': [ 876 'sources!': [
865 'browser/extensions/api/storage/managed_value_store_cache.cc', 877 'browser/extensions/api/storage/managed_value_store_cache.cc',
866 'browser/extensions/api/storage/managed_value_store_cache.h', 878 'browser/extensions/api/storage/managed_value_store_cache.h',
867 'browser/extensions/api/storage/policy_value_store.cc', 879 'browser/extensions/api/storage/policy_value_store.cc',
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
947 'variables': { 959 'variables': {
948 'proto_in_dir': 'browser/chromeos/contacts', 960 'proto_in_dir': 'browser/chromeos/contacts',
949 'proto_out_dir': 'chrome/browser/chromeos/contacts', 961 'proto_out_dir': 'chrome/browser/chromeos/contacts',
950 }, 962 },
951 'includes': [ '../build/protoc.gypi' ] 963 'includes': [ '../build/protoc.gypi' ]
952 }, 964 },
953 ], 965 ],
954 },], # 'chromeos=1' 966 },], # 'chromeos=1'
955 ], # 'conditions' 967 ], # 'conditions'
956 } 968 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | chrome/chrome_browser_ui.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698