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

Side by Side Diff: net/net.gyp

Issue 994193002: Compile quic_server on MacOS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: undefine __APPLE_USE_RFC_n after use Created 5 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/quic/quic_client.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 8
9 'linux_link_kerberos%': 0, 9 'linux_link_kerberos%': 0,
10 'conditions': [ 10 'conditions': [
(...skipping 1227 matching lines...) Expand 10 before | Expand all | Expand 10 after
1238 'type': 'executable', 1238 'type': 'executable',
1239 'dependencies': [ 1239 'dependencies': [
1240 '../base/base.gyp:base', 1240 '../base/base.gyp:base',
1241 'net', 1241 'net',
1242 'quic_base', 1242 'quic_base',
1243 ], 1243 ],
1244 'sources': [ 1244 'sources': [
1245 'tools/quic/quic_client_bin.cc', 1245 'tools/quic/quic_client_bin.cc',
1246 ], 1246 ],
1247 }, 1247 },
1248 ]
1249 }],
1250 ['os_posix == 1 and OS != "ios" and OS != "android"', {
1251 'targets': [
1248 { 1252 {
1249 'target_name': 'quic_server', 1253 'target_name': 'quic_server',
1250 'type': 'executable', 1254 'type': 'executable',
1251 'dependencies': [ 1255 'dependencies': [
1252 '../base/base.gyp:base', 1256 '../base/base.gyp:base',
1253 'net', 1257 'net',
1254 'quic_tools', 1258 'quic_tools',
1255 ], 1259 ],
1256 'sources': [ 1260 'sources': [
1257 'quic/quic_server_bin.cc', 1261 'quic/quic_server_bin.cc',
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
1480 '../build/isolate.gypi', 1484 '../build/isolate.gypi',
1481 ], 1485 ],
1482 'sources': [ 1486 'sources': [
1483 'net_unittests.isolate', 1487 'net_unittests.isolate',
1484 ], 1488 ],
1485 }, 1489 },
1486 ], 1490 ],
1487 }], 1491 }],
1488 ], 1492 ],
1489 } 1493 }
OLDNEW
« no previous file with comments | « net/BUILD.gn ('k') | net/tools/quic/quic_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698