Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: net/net.gyp

Issue 1838443002: Provide GN support for cachetool and content_decoder_tool (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/BUILD.gn ('k') | net/tools/cachetool/cachetool.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'linux_link_kerberos%': 0, 8 'linux_link_kerberos%': 0,
9 'conditions': [ 9 'conditions': [
10 ['chromeos==1 or embedded==1 or OS=="ios"', { 10 ['chromeos==1 or embedded==1 or OS=="ios"', {
(...skipping 762 matching lines...) Expand 10 before | Expand all | Expand 10 after
773 'tools/balsa/http_message_constants.h', 773 'tools/balsa/http_message_constants.h',
774 'tools/balsa/noop_balsa_visitor.h', 774 'tools/balsa/noop_balsa_visitor.h',
775 'tools/balsa/simple_buffer.cc', 775 'tools/balsa/simple_buffer.cc',
776 'tools/balsa/simple_buffer.h', 776 'tools/balsa/simple_buffer.h',
777 'tools/balsa/string_piece_utils.h', 777 'tools/balsa/string_piece_utils.h',
778 'tools/quic/spdy_balsa_utils.cc', 778 'tools/quic/spdy_balsa_utils.cc',
779 'tools/quic/spdy_balsa_utils.h', 779 'tools/quic/spdy_balsa_utils.h',
780 ], 780 ],
781 }, 781 },
782 { 782 {
783 'target_name': 'cachetool',
784 'type': 'executable',
785 'dependencies': [
786 '../base/base.gyp:base',
787 'net',
788 'net_test_support',
789 ],
790 'sources': [
791 'tools/cachetool/cachetool.cc',
792 ],
793 },
794 {
795 'target_name': 'dump_cache', 783 'target_name': 'dump_cache',
796 'type': 'executable', 784 'type': 'executable',
797 'dependencies': [ 785 'dependencies': [
798 '../base/base.gyp:base', 786 '../base/base.gyp:base',
799 'net', 787 'net',
800 'net_test_support', 788 'net_test_support',
801 ], 789 ],
802 'sources': [ 790 'sources': [
803 'tools/dump_cache/dump_cache.cc', 791 'tools/dump_cache/dump_cache.cc',
804 'tools/dump_cache/dump_files.cc', 792 'tools/dump_cache/dump_files.cc',
(...skipping 883 matching lines...) Expand 10 before | Expand all | Expand 10 after
1688 ], 1676 ],
1689 'sources': [ 1677 'sources': [
1690 'tools/disk_cache_memory_test/disk_cache_memory_test.cc', 1678 'tools/disk_cache_memory_test/disk_cache_memory_test.cc',
1691 ], 1679 ],
1692 }, 1680 },
1693 ], 1681 ],
1694 }], 1682 }],
1695 ['OS == "linux"', { 1683 ['OS == "linux"', {
1696 'targets': [ 1684 'targets': [
1697 { 1685 {
1686 'target_name': 'cachetool',
1687 'type': 'executable',
1688 'dependencies': [
1689 '../base/base.gyp:base',
1690 'net',
1691 'net_test_support',
1692 ],
1693 'sources': [
1694 'tools/cachetool/cachetool.cc',
1695 ],
1696 },
1697 {
1698 'target_name': 'content_decoder_tool', 1698 'target_name': 'content_decoder_tool',
1699 'type': 'executable', 1699 'type': 'executable',
1700 'dependencies': [ 1700 'dependencies': [
1701 '../base/base.gyp:base', 1701 '../base/base.gyp:base',
1702 '../url/url.gyp:url_lib', 1702 '../url/url.gyp:url_lib',
1703 'net', 1703 'net',
1704 ], 1704 ],
1705 'sources': [ 1705 'sources': [
1706 'filter/mock_filter_context.cc',
1706 'tools/content_decoder_tool/content_decoder_tool.cc', 1707 'tools/content_decoder_tool/content_decoder_tool.cc',
1707 'filter/mock_filter_context.cc',
1708 ], 1708 ],
1709 } 1709 }
1710 ], 1710 ],
1711 }], 1711 }],
1712 ['test_isolation_mode != "noop"', { 1712 ['test_isolation_mode != "noop"', {
1713 'targets': [ 1713 'targets': [
1714 { 1714 {
1715 'target_name': 'net_unittests_run', 1715 'target_name': 'net_unittests_run',
1716 'type': 'none', 1716 'type': 'none',
1717 'dependencies': [ 1717 'dependencies': [
1718 'net_unittests', 1718 'net_unittests',
1719 ], 1719 ],
1720 'includes': [ 1720 'includes': [
1721 '../build/isolate.gypi', 1721 '../build/isolate.gypi',
1722 ], 1722 ],
1723 'sources': [ 1723 'sources': [
1724 'net_unittests.isolate', 1724 'net_unittests.isolate',
1725 ], 1725 ],
1726 }, 1726 },
1727 ], 1727 ],
1728 }], 1728 }],
1729 ], 1729 ],
1730 } 1730 }
OLDNEW
« no previous file with comments | « net/BUILD.gn ('k') | net/tools/cachetool/cachetool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698