| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'includes': [ | 9 'includes': [ |
| 10 '../build/common.gypi', | 10 '../build/common.gypi', |
| (...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 453 ], | 453 ], |
| 454 ], | 454 ], |
| 455 }, | 455 }, |
| 456 { | 456 { |
| 457 'target_name': 'net_perftests', | 457 'target_name': 'net_perftests', |
| 458 'type': 'executable', | 458 'type': 'executable', |
| 459 'dependencies': [ | 459 'dependencies': [ |
| 460 'net', | 460 'net', |
| 461 'net_test_support', | 461 'net_test_support', |
| 462 '../base/base.gyp:base', | 462 '../base/base.gyp:base', |
| 463 '../base/base.gyp:test_support_base', |
| 463 '../testing/gtest.gyp:gtest', | 464 '../testing/gtest.gyp:gtest', |
| 464 ], | 465 ], |
| 465 'msvs_guid': 'AAC78796-B9A2-4CD9-BF89-09B03E92BF73', | 466 'msvs_guid': 'AAC78796-B9A2-4CD9-BF89-09B03E92BF73', |
| 466 'sources': [ | 467 'sources': [ |
| 467 '../base/perftimer.cc', | |
| 468 '../base/run_all_perftests.cc', | |
| 469 'base/cookie_monster_perftest.cc', | 468 'base/cookie_monster_perftest.cc', |
| 470 'disk_cache/disk_cache_perftest.cc', | 469 'disk_cache/disk_cache_perftest.cc', |
| 471 'proxy/proxy_resolver_perftest.cc', | 470 'proxy/proxy_resolver_perftest.cc', |
| 472 ], | 471 ], |
| 473 'conditions': [ | 472 'conditions': [ |
| 474 # This is needed to trigger the dll copy step on windows. | 473 # This is needed to trigger the dll copy step on windows. |
| 475 # TODO(mark): Specifying this here shouldn't be necessary. | 474 # TODO(mark): Specifying this here shouldn't be necessary. |
| 476 [ 'OS == "win"', { | 475 [ 'OS == "win"', { |
| 477 'dependencies': [ | 476 'dependencies': [ |
| 478 '../third_party/icu38/icu38.gyp:icudata', | 477 '../third_party/icu38/icu38.gyp:icudata', |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 575 'sources': [ | 574 'sources': [ |
| 576 'tools/dump_cache/dump_cache.cc', | 575 'tools/dump_cache/dump_cache.cc', |
| 577 'tools/dump_cache/dump_files.cc', | 576 'tools/dump_cache/dump_files.cc', |
| 578 'tools/dump_cache/upgrade.cc', | 577 'tools/dump_cache/upgrade.cc', |
| 579 ], | 578 ], |
| 580 }, | 579 }, |
| 581 ], | 580 ], |
| 582 }], | 581 }], |
| 583 ], | 582 ], |
| 584 } | 583 } |
| OLD | NEW |