| 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 602 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 613 'dependencies': [ | 613 'dependencies': [ |
| 614 'net', | 614 'net', |
| 615 '../base/base.gyp:base', | 615 '../base/base.gyp:base', |
| 616 ], | 616 ], |
| 617 'sources': [ | 617 'sources': [ |
| 618 'tools/dump_cache/dump_cache.cc', | 618 'tools/dump_cache/dump_cache.cc', |
| 619 'tools/dump_cache/dump_files.cc', | 619 'tools/dump_cache/dump_files.cc', |
| 620 'tools/dump_cache/upgrade.cc', | 620 'tools/dump_cache/upgrade.cc', |
| 621 ], | 621 ], |
| 622 }, | 622 }, |
| 623 { |
| 624 'target_name': 'fetch_client', |
| 625 'type': 'executable', |
| 626 'dependencies': [ |
| 627 'net', |
| 628 '../base/base.gyp:base', |
| 629 '../base/base.gyp:test_support_base', |
| 630 '../testing/gtest.gyp:gtest', |
| 631 ], |
| 632 'msvs_guid': 'DABB8796-B9A2-4CD9-BF89-09B03E92B123', |
| 633 'sources': [ |
| 634 'tools/fetch/fetch_client.cc', |
| 635 ], |
| 636 }, |
| 637 { |
| 638 'target_name': 'fetch_server', |
| 639 'type': 'executable', |
| 640 'dependencies': [ |
| 641 'net', |
| 642 '../base/base.gyp:base', |
| 643 '../base/base.gyp:test_support_base', |
| 644 '../testing/gtest.gyp:gtest', |
| 645 ], |
| 646 'msvs_guid': 'DABB8796-B9A2-4CD9-BF89-09B03E92B124', |
| 647 'sources': [ |
| 648 'tools/fetch/fetch_server.cc', |
| 649 'tools/fetch/http_listen_socket.cc', |
| 650 'tools/fetch/http_listen_socket.h', |
| 651 'tools/fetch/http_server.cc', |
| 652 'tools/fetch/http_server.h', |
| 653 'tools/fetch/http_session.cc', |
| 654 'tools/fetch/http_session.h', |
| 655 ], |
| 656 }, |
| 623 ], | 657 ], |
| 624 }], | 658 }], |
| 625 ], | 659 ], |
| 626 } | 660 } |
| OLD | NEW |