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

Side by Side Diff: net/net.gyp

Issue 4524003: net: add Snap Start tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ... Created 10 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 1363 matching lines...) Expand 10 before | Expand all | Expand 10 after
1374 # 'tools/flip_server/split.h', 1374 # 'tools/flip_server/split.h',
1375 # 'tools/flip_server/split.cc', 1375 # 'tools/flip_server/split.cc',
1376 # 'tools/flip_server/string_piece_utils.h', 1376 # 'tools/flip_server/string_piece_utils.h',
1377 # 'tools/flip_server/thread.h', 1377 # 'tools/flip_server/thread.h',
1378 # 'tools/flip_server/url_to_filename_encoder.h', 1378 # 'tools/flip_server/url_to_filename_encoder.h',
1379 # 'tools/flip_server/url_utilities.h', 1379 # 'tools/flip_server/url_utilities.h',
1380 # ], 1380 # ],
1381 # }, 1381 # },
1382 # ] 1382 # ]
1383 # }], 1383 # }],
1384 ['OS=="linux"', {
1385 'targets': [
1386 {
1387 'target_name': 'snap_start_unittests',
1388 'type': 'executable',
1389 'dependencies': [
1390 'net',
1391 'net_test_support',
1392 'openssl_helper',
1393 '../build/linux/system.gyp:nss',
1394 '../testing/gmock.gyp:gmock',
1395 '../testing/gtest.gyp:gtest',
1396 ],
1397 'sources': [
1398 'base/run_all_unittests.cc',
1399 'socket/ssl_client_socket_snapstart_unittest.cc',
1400 ]
1401 },
1402 {
1403 'target_name': 'openssl_helper',
1404 'type': 'executable',
1405 'dependencies': [
1406 '../third_party/openssl/openssl.gyp:openssl',
1407 ],
1408 'sources': [
1409 'test/openssl_helper.cc',
1410 ],
1411 },
1412 ],
1413 }],
1384 ['OS=="win"', { 1414 ['OS=="win"', {
1385 'targets': [ 1415 'targets': [
1386 { 1416 {
1387 # TODO(port): dump_cache is still Windows-specific. 1417 # TODO(port): dump_cache is still Windows-specific.
1388 'target_name': 'dump_cache', 1418 'target_name': 'dump_cache',
1389 'type': 'executable', 1419 'type': 'executable',
1390 'dependencies': [ 1420 'dependencies': [
1391 'net', 1421 'net',
1392 '../base/base.gyp:base', 1422 '../base/base.gyp:base',
1393 ], 1423 ],
(...skipping 12 matching lines...) Expand all
1406 ], 1436 ],
1407 }], 1437 }],
1408 ], 1438 ],
1409 } 1439 }
1410 1440
1411 # Local Variables: 1441 # Local Variables:
1412 # tab-width:2 1442 # tab-width:2
1413 # indent-tabs-mode:nil 1443 # indent-tabs-mode:nil
1414 # End: 1444 # End:
1415 # vim: set expandtab tabstop=2 shiftwidth=2: 1445 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698