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

Side by Side Diff: net/net.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 | « content/content_tests.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 'linux_link_kerberos%': 0, 9 'linux_link_kerberos%': 0,
10 'use_simple_cache_backend%': 0, 10 'use_simple_cache_backend%': 0,
(...skipping 1271 matching lines...) Expand 10 before | Expand all | Expand 10 after
1282 'include_dirs': [ 1282 'include_dirs': [
1283 '../third_party/openssl', 1283 '../third_party/openssl',
1284 ], 1284 ],
1285 }, { # else OS != "android" 1285 }, { # else OS != "android"
1286 'defines': [ 1286 'defines': [
1287 # These are the features Android doesn't support. 1287 # These are the features Android doesn't support.
1288 'ENABLE_MEDIA_CODEC_THEORA', 1288 'ENABLE_MEDIA_CODEC_THEORA',
1289 ], 1289 ],
1290 }, 1290 },
1291 ], 1291 ],
1292 [ 'OS == "linux"', { 1292 [ 'OS == "linux" and use_dbus == 1', {
1293 'dependencies': [ 1293 'dependencies': [
1294 '../build/linux/system.gyp:dbus', 1294 '../build/linux/system.gyp:dbus',
1295 '../dbus/dbus.gyp:dbus', 1295 '../dbus/dbus.gyp:dbus',
1296 ], 1296 ],
1297 }, 1297 },
1298 ], 1298 ],
1299 ], 1299 ],
1300 'target_conditions': [ 1300 'target_conditions': [
1301 # These source files are excluded by default platform rules, but they 1301 # These source files are excluded by default platform rules, but they
1302 # are needed in specific cases on other platforms. Re-including them can 1302 # are needed in specific cases on other platforms. Re-including them can
(...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after
1840 'http/http_network_transaction_spdy2_unittest.cc', 1840 'http/http_network_transaction_spdy2_unittest.cc',
1841 'http/http_network_transaction_spdy3_unittest.cc', 1841 'http/http_network_transaction_spdy3_unittest.cc',
1842 1842
1843 # These tests crash when run with coverage turned on: 1843 # These tests crash when run with coverage turned on:
1844 # http://crbug.com/177203 1844 # http://crbug.com/177203
1845 'proxy/proxy_service_unittest.cc', 1845 'proxy/proxy_service_unittest.cc',
1846 ], 1846 ],
1847 }], 1847 }],
1848 ], 1848 ],
1849 }], 1849 }],
1850 [ 'OS == "linux"', { 1850 [ 'OS == "linux" and use_dbus == 1', {
1851 'dependencies': [ 1851 'dependencies': [
1852 '../build/linux/system.gyp:dbus', 1852 '../build/linux/system.gyp:dbus',
1853 '../dbus/dbus.gyp:dbus_test_support', 1853 '../dbus/dbus.gyp:dbus_test_support',
1854 ], 1854 ],
1855 }, 1855 },
1856 ], 1856 ],
1857 [ 'OS == "android"', { 1857 [ 'OS == "android"', {
1858 'dependencies': [ 1858 'dependencies': [
1859 '../third_party/openssl/openssl.gyp:openssl', 1859 '../third_party/openssl/openssl.gyp:openssl',
1860 ], 1860 ],
(...skipping 698 matching lines...) Expand 10 before | Expand all | Expand 10 after
2559 '--result', '<@(_outputs)', 2559 '--result', '<@(_outputs)',
2560 '--isolate', 'net_unittests.isolate', 2560 '--isolate', 'net_unittests.isolate',
2561 ], 2561 ],
2562 }, 2562 },
2563 ], 2563 ],
2564 }, 2564 },
2565 ], 2565 ],
2566 }], 2566 }],
2567 ], 2567 ],
2568 } 2568 }
OLDNEW
« no previous file with comments | « content/content_tests.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698