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 # Defines an extra set of libs with an alternate copy of org.apache.http. | 8 # Defines an extra set of libs with an alternate copy of org.apache.http. |
9 # TODO(yfriedman): Remove this when crbug.com/488192 is fixed. | 9 # TODO(yfriedman): Remove this when crbug.com/488192 is fixed. |
10 'net_test_extra_libs': [], | 10 'net_test_extra_libs': [], |
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
444 { | 444 { |
445 'target_name': 'net_perftests', | 445 'target_name': 'net_perftests', |
446 'type': 'executable', | 446 'type': 'executable', |
447 'dependencies': [ | 447 'dependencies': [ |
448 '../base/base.gyp:base', | 448 '../base/base.gyp:base', |
449 '../base/base.gyp:base_i18n', | 449 '../base/base.gyp:base_i18n', |
450 '../base/base.gyp:test_support_perf', | 450 '../base/base.gyp:test_support_perf', |
451 '../testing/gtest.gyp:gtest', | 451 '../testing/gtest.gyp:gtest', |
452 '../url/url.gyp:url_lib', | 452 '../url/url.gyp:url_lib', |
453 'net', | 453 'net', |
| 454 'net_extras', |
454 'net_test_support', | 455 'net_test_support', |
455 ], | 456 ], |
456 'sources': [ | 457 'sources': [ |
457 'cookies/cookie_monster_perftest.cc', | 458 'cookies/cookie_monster_perftest.cc', |
458 'disk_cache/blockfile/disk_cache_perftest.cc', | 459 'disk_cache/blockfile/disk_cache_perftest.cc', |
| 460 'extras/sqlite/sqlite_persistent_cookie_store_perftest.cc', |
459 'proxy/proxy_resolver_perftest.cc', | 461 'proxy/proxy_resolver_perftest.cc', |
460 'udp/udp_socket_perftest.cc', | 462 'udp/udp_socket_perftest.cc', |
461 'websockets/websocket_frame_perftest.cc', | 463 'websockets/websocket_frame_perftest.cc', |
462 ], | 464 ], |
463 'conditions': [ | 465 'conditions': [ |
464 [ 'use_v8_in_net==1', { | 466 [ 'use_v8_in_net==1', { |
465 'dependencies': [ | 467 'dependencies': [ |
466 'net_with_v8', | 468 'net_with_v8', |
467 ], | 469 ], |
468 }, { # else: !use_v8_in_net | 470 }, { # else: !use_v8_in_net |
(...skipping 1077 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1546 '../build/isolate.gypi', | 1548 '../build/isolate.gypi', |
1547 ], | 1549 ], |
1548 'sources': [ | 1550 'sources': [ |
1549 'net_unittests.isolate', | 1551 'net_unittests.isolate', |
1550 ], | 1552 ], |
1551 }, | 1553 }, |
1552 ], | 1554 ], |
1553 }], | 1555 }], |
1554 ], | 1556 ], |
1555 } | 1557 } |
OLD | NEW |