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

Side by Side Diff: build/all.gyp

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 | « no previous file | build/common.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': 'All', 8 'target_name': 'All',
9 'type': 'none', 9 'type': 'none',
10 'xcode_create_dependents_test_runner': 1, 10 'xcode_create_dependents_test_runner': 1,
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 ], 83 ],
84 }], 84 }],
85 ['OS=="mac"', { 85 ['OS=="mac"', {
86 'dependencies': [ 86 'dependencies': [
87 '../third_party/ocmock/ocmock.gyp:*', 87 '../third_party/ocmock/ocmock.gyp:*',
88 ], 88 ],
89 }], 89 }],
90 ['OS=="linux"', { 90 ['OS=="linux"', {
91 'dependencies': [ 91 'dependencies': [
92 '../courgette/courgette.gyp:*', 92 '../courgette/courgette.gyp:*',
93 '../dbus/dbus.gyp:*',
94 '../sandbox/sandbox.gyp:*', 93 '../sandbox/sandbox.gyp:*',
95 ], 94 ],
96 'conditions': [ 95 'conditions': [
97 ['branding=="Chrome"', { 96 ['branding=="Chrome"', {
98 'dependencies': [ 97 'dependencies': [
99 '../chrome/chrome.gyp:linux_packages_<(channel)', 98 '../chrome/chrome.gyp:linux_packages_<(channel)',
100 ], 99 ],
101 }], 100 }],
102 ['chromeos==0', { 101 ['chromeos==0', {
103 'dependencies': [ 102 'dependencies': [
104 '../third_party/cros_dbus_cplusplus/cros_dbus_cplusplus.gyp:*', 103 '../third_party/cros_dbus_cplusplus/cros_dbus_cplusplus.gyp:*',
105 '../third_party/libmtp/libmtp.gyp:*', 104 '../third_party/libmtp/libmtp.gyp:*',
106 '../third_party/mtpd/mtpd.gyp:*', 105 '../third_party/mtpd/mtpd.gyp:*',
107 ], 106 ],
108 }], 107 }],
108 ['use_dbus==1', {
109 'dependencies': [
110 '../dbus/dbus.gyp:*',
111 ],
112 }],
109 ], 113 ],
110 }], 114 }],
111 ['use_x11==1', { 115 ['use_x11==1', {
112 'dependencies': [ 116 'dependencies': [
113 '../tools/xdisplaycheck/xdisplaycheck.gyp:*', 117 '../tools/xdisplaycheck/xdisplaycheck.gyp:*',
114 ], 118 ],
115 }], 119 }],
116 ['toolkit_uses_gtk==1', { 120 ['toolkit_uses_gtk==1', {
117 'dependencies': [ 121 'dependencies': [
118 '../tools/gtk_clipboard_dump/gtk_clipboard_dump.gyp:*', 122 '../tools/gtk_clipboard_dump/gtk_clipboard_dump.gyp:*',
(...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after
800 '../chrome/chrome.gyp:browser_tests_run', 804 '../chrome/chrome.gyp:browser_tests_run',
801 '../chrome/chrome.gyp:sync_integration_tests_run', 805 '../chrome/chrome.gyp:sync_integration_tests_run',
802 '../chrome/chrome.gyp:unit_tests_run', 806 '../chrome/chrome.gyp:unit_tests_run',
803 '../net/net.gyp:net_unittests_run', 807 '../net/net.gyp:net_unittests_run',
804 ], 808 ],
805 }, # target_name: chromium_swarm_tests 809 }, # target_name: chromium_swarm_tests
806 ], 810 ],
807 }], 811 }],
808 ], # conditions 812 ], # conditions
809 } 813 }
OLDNEW
« no previous file with comments | « no previous file | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698