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

Side by Side Diff: net/net.gyp

Issue 1831953002: Fix shared_library build of 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 | « no previous file | no next file » | 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 1681 matching lines...) Expand 10 before | Expand all | Expand 10 after
1692 }, 1692 },
1693 ], 1693 ],
1694 }], 1694 }],
1695 ['OS == "linux"', { 1695 ['OS == "linux"', {
1696 'targets': [ 1696 'targets': [
1697 { 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 'net', 1703 'net',
1703 ], 1704 ],
1704 'sources': [ 1705 'sources': [
1705 'tools/content_decoder_tool/content_decoder_tool.cc', 1706 'tools/content_decoder_tool/content_decoder_tool.cc',
1706 'filter/mock_filter_context.cc', 1707 'filter/mock_filter_context.cc',
1707 ], 1708 ],
1708 } 1709 }
1709 ], 1710 ],
1710 }], 1711 }],
1711 ['test_isolation_mode != "noop"', { 1712 ['test_isolation_mode != "noop"', {
1712 'targets': [ 1713 'targets': [
1713 { 1714 {
1714 'target_name': 'net_unittests_run', 1715 'target_name': 'net_unittests_run',
1715 'type': 'none', 1716 'type': 'none',
1716 'dependencies': [ 1717 'dependencies': [
1717 'net_unittests', 1718 'net_unittests',
1718 ], 1719 ],
1719 'includes': [ 1720 'includes': [
1720 '../build/isolate.gypi', 1721 '../build/isolate.gypi',
1721 ], 1722 ],
1722 'sources': [ 1723 'sources': [
1723 'net_unittests.isolate', 1724 'net_unittests.isolate',
1724 ], 1725 ],
1725 }, 1726 },
1726 ], 1727 ],
1727 }], 1728 }],
1728 ], 1729 ],
1729 } 1730 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698