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

Side by Side Diff: components/components_tests.gyp

Issue 1882433002: Removing NSS files and USE_OPENSSL flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removing unused test code' Created 4 years, 8 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 # This turns on e.g. the filename-based detection of which 7 # This turns on e.g. the filename-based detection of which
8 # platforms to include source files on (e.g. files ending in 8 # platforms to include source files on (e.g. files ending in
9 # _mac.h or _mac.cc are only compiled on MacOSX). 9 # _mac.h or _mac.cc are only compiled on MacOSX).
10 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 1263 matching lines...) Expand 10 before | Expand all | Expand 10 after
1274 'components.gyp:visitedlink_browser', 1274 'components.gyp:visitedlink_browser',
1275 'components.gyp:visitedlink_renderer', 1275 'components.gyp:visitedlink_renderer',
1276 'components.gyp:wallpaper', 1276 'components.gyp:wallpaper',
1277 'components.gyp:web_cache_browser', 1277 'components.gyp:web_cache_browser',
1278 'components.gyp:web_modal', 1278 'components.gyp:web_modal',
1279 'components.gyp:web_modal_test_support', 1279 'components.gyp:web_modal_test_support',
1280 'scheduler/scheduler.gyp:scheduler', 1280 'scheduler/scheduler.gyp:scheduler',
1281 'test_runner/test_runner.gyp:test_runner', 1281 'test_runner/test_runner.gyp:test_runner',
1282 'tracing.gyp:tracing', 1282 'tracing.gyp:tracing',
1283 'webcrypto/webcrypto.gyp:webcrypto', 1283 'webcrypto/webcrypto.gyp:webcrypto',
1284 '../third_party/boringssl/boringssl.gyp:boringssl',
1284 '../third_party/re2/re2.gyp:re2', 1285 '../third_party/re2/re2.gyp:re2',
1285 ], 1286 ],
1286 'conditions': [ 1287 'conditions': [
1287 ['OS=="android"', { 1288 ['OS=="android"', {
1288 'sources' : [ 1289 'sources' : [
1289 '<@(web_restrictions_unittest_sources)', 1290 '<@(web_restrictions_unittest_sources)',
1290 ], 1291 ],
1291 'dependencies': [ 1292 'dependencies': [
1292 'components.gyp:web_restrictions_browser', 1293 'components.gyp:web_restrictions_browser',
1293 'components.gyp:web_restrictions_test_support', 1294 'components.gyp:web_restrictions_test_support',
1294 '../build/android/ndk.gyp:cpu_features', 1295 '../build/android/ndk.gyp:cpu_features',
1295 ], 1296 ],
1296 }], 1297 }],
1297 ['OS=="android" and configuration_policy == 1', { 1298 ['OS=="android" and configuration_policy == 1', {
1298 'dependencies': [ 1299 'dependencies': [
1299 'components.gyp:policy_java', 1300 'components.gyp:policy_java',
1300 ], 1301 ],
1301 }], 1302 }],
1302 ['use_openssl==1', {
1303 'dependencies': [
1304 '../third_party/boringssl/boringssl.gyp:boringssl',
1305 ],
1306 }, {
1307 'conditions': [
1308 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "andro id"', {
1309 'dependencies': [
1310 '../build/linux/system.gyp:ssl',
1311 ],
1312 }, {
1313 'dependencies': [
1314 '../third_party/nss/nss.gyp:nspr',
1315 '../third_party/nss/nss.gyp:nss',
1316 ],
1317 }],
1318 ],
1319 }],
1320 ['safe_browsing == 2 and OS != "ios"', { 1303 ['safe_browsing == 2 and OS != "ios"', {
1321 'dependencies': [ 1304 'dependencies': [
1322 'components.gyp:safe_browsing_db_mobile', 1305 'components.gyp:safe_browsing_db_mobile',
1323 ], 1306 ],
1324 'sources': [ 1307 'sources': [
1325 '<@(safe_browsing_db_mobile_unittest_sources)', 1308 '<@(safe_browsing_db_mobile_unittest_sources)',
1326 ], 1309 ],
1327 }], 1310 }],
1328 ], 1311 ],
1329 }, { # 'OS == "ios"' 1312 }, { # 'OS == "ios"'
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after
1924 'dependencies': [ 1907 'dependencies': [
1925 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1908 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1926 ], 1909 ],
1927 }], 1910 }],
1928 ], 1911 ],
1929 }, 1912 },
1930 ], 1913 ],
1931 }], 1914 }],
1932 ], 1915 ],
1933 } 1916 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698