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

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: Rebase. 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 1267 matching lines...) Expand 10 before | Expand all | Expand 10 after
1278 'components.gyp:visitedlink_browser', 1278 'components.gyp:visitedlink_browser',
1279 'components.gyp:visitedlink_renderer', 1279 'components.gyp:visitedlink_renderer',
1280 'components.gyp:wallpaper', 1280 'components.gyp:wallpaper',
1281 'components.gyp:web_cache_browser', 1281 'components.gyp:web_cache_browser',
1282 'components.gyp:web_modal', 1282 'components.gyp:web_modal',
1283 'components.gyp:web_modal_test_support', 1283 'components.gyp:web_modal_test_support',
1284 'scheduler/scheduler.gyp:scheduler', 1284 'scheduler/scheduler.gyp:scheduler',
1285 'test_runner/test_runner.gyp:test_runner', 1285 'test_runner/test_runner.gyp:test_runner',
1286 'tracing.gyp:tracing', 1286 'tracing.gyp:tracing',
1287 'webcrypto/webcrypto.gyp:webcrypto', 1287 'webcrypto/webcrypto.gyp:webcrypto',
1288 '../third_party/boringssl/boringssl.gyp:boringssl',
1288 '../third_party/re2/re2.gyp:re2', 1289 '../third_party/re2/re2.gyp:re2',
1289 ], 1290 ],
1290 'conditions': [ 1291 'conditions': [
1291 ['OS=="android"', { 1292 ['OS=="android"', {
1292 'sources' : [ 1293 'sources' : [
1293 '<@(web_restrictions_unittest_sources)', 1294 '<@(web_restrictions_unittest_sources)',
1294 ], 1295 ],
1295 'dependencies': [ 1296 'dependencies': [
1296 'components.gyp:web_restrictions_browser', 1297 'components.gyp:web_restrictions_browser',
1297 'components.gyp:web_restrictions_test_support', 1298 'components.gyp:web_restrictions_test_support',
1298 '../build/android/ndk.gyp:cpu_features', 1299 '../build/android/ndk.gyp:cpu_features',
1299 ], 1300 ],
1300 }], 1301 }],
1301 ['OS=="android" and configuration_policy == 1', { 1302 ['OS=="android" and configuration_policy == 1', {
1302 'dependencies': [ 1303 'dependencies': [
1303 'components.gyp:policy_java', 1304 'components.gyp:policy_java',
1304 ], 1305 ],
1305 }], 1306 }],
1306 ['use_openssl==1', {
1307 'dependencies': [
1308 '../third_party/boringssl/boringssl.gyp:boringssl',
1309 ],
1310 }, {
1311 'conditions': [
1312 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "andro id"', {
1313 'dependencies': [
1314 '../build/linux/system.gyp:ssl',
1315 ],
1316 }, {
1317 'dependencies': [
1318 '../third_party/nss/nss.gyp:nspr',
1319 '../third_party/nss/nss.gyp:nss',
1320 ],
1321 }],
1322 ],
1323 }],
1324 ['safe_browsing == 2 and OS != "ios"', { 1307 ['safe_browsing == 2 and OS != "ios"', {
1325 'dependencies': [ 1308 'dependencies': [
1326 'components.gyp:safe_browsing_db_mobile', 1309 'components.gyp:safe_browsing_db_mobile',
1327 ], 1310 ],
1328 'sources': [ 1311 'sources': [
1329 '<@(safe_browsing_db_mobile_unittest_sources)', 1312 '<@(safe_browsing_db_mobile_unittest_sources)',
1330 ], 1313 ],
1331 }], 1314 }],
1332 ], 1315 ],
1333 }, { # 'OS == "ios"' 1316 }, { # 'OS == "ios"'
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after
1928 'dependencies': [ 1911 'dependencies': [
1929 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1912 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1930 ], 1913 ],
1931 }], 1914 }],
1932 ], 1915 ],
1933 }, 1916 },
1934 ], 1917 ],
1935 }], 1918 }],
1936 ], 1919 ],
1937 } 1920 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698