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 'conditions': [ | 10 'conditions': [ |
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
441 { | 441 { |
442 'target_name': 'net_perftests', | 442 'target_name': 'net_perftests', |
443 'type': 'executable', | 443 'type': 'executable', |
444 'dependencies': [ | 444 'dependencies': [ |
445 '../base/base.gyp:base', | 445 '../base/base.gyp:base', |
446 '../base/base.gyp:base_i18n', | 446 '../base/base.gyp:base_i18n', |
447 '../base/base.gyp:test_support_perf', | 447 '../base/base.gyp:test_support_perf', |
448 '../testing/gtest.gyp:gtest', | 448 '../testing/gtest.gyp:gtest', |
449 '../url/url.gyp:url_lib', | 449 '../url/url.gyp:url_lib', |
450 'net', | 450 'net', |
| 451 'net_extras', |
451 'net_test_support', | 452 'net_test_support', |
452 ], | 453 ], |
453 'sources': [ | 454 'sources': [ |
454 'cookies/cookie_monster_perftest.cc', | 455 'cookies/cookie_monster_perftest.cc', |
455 'disk_cache/blockfile/disk_cache_perftest.cc', | 456 'disk_cache/blockfile/disk_cache_perftest.cc', |
| 457 'extras/sqlite/sqlite_persistent_cookie_store_perftest.cc', |
456 'proxy/proxy_resolver_perftest.cc', | 458 'proxy/proxy_resolver_perftest.cc', |
457 'udp/udp_socket_perftest.cc', | 459 'udp/udp_socket_perftest.cc', |
458 'websockets/websocket_frame_perftest.cc', | 460 'websockets/websocket_frame_perftest.cc', |
459 ], | 461 ], |
460 'conditions': [ | 462 'conditions': [ |
461 [ 'use_v8_in_net==1', { | 463 [ 'use_v8_in_net==1', { |
462 'dependencies': [ | 464 'dependencies': [ |
463 'net_with_v8', | 465 'net_with_v8', |
464 ], | 466 ], |
465 }, { # else: !use_v8_in_net | 467 }, { # else: !use_v8_in_net |
(...skipping 1074 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1540 '../build/isolate.gypi', | 1542 '../build/isolate.gypi', |
1541 ], | 1543 ], |
1542 'sources': [ | 1544 'sources': [ |
1543 'net_unittests.isolate', | 1545 'net_unittests.isolate', |
1544 ], | 1546 ], |
1545 }, | 1547 }, |
1546 ], | 1548 ], |
1547 }], | 1549 }], |
1548 ], | 1550 ], |
1549 } | 1551 } |
OLD | NEW |