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