OLD | NEW |
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 Loading... |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |