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

Side by Side Diff: net/net.gyp

Issue 1548503002: net: extract GetDirectoryListingXXX functions into directory_listing.* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 '../base/base.gyp:base_i18n', 109 '../base/base.gyp:base_i18n',
110 '../third_party/icu/icu.gyp:icui18n', 110 '../third_party/icu/icu.gyp:icui18n',
111 '../third_party/icu/icu.gyp:icuuc', 111 '../third_party/icu/icu.gyp:icuuc',
112 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 112 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
113 '../url/url.gyp:url_lib', 113 '../url/url.gyp:url_lib',
114 'net_quic_proto', 114 'net_quic_proto',
115 ], 115 ],
116 'sources': [ 116 'sources': [
117 'base/filename_util_icu.cc', 117 'base/filename_util_icu.cc',
118 'base/net_string_util_icu.cc', 118 'base/net_string_util_icu.cc',
119 'base/net_util_icu.cc',
120 ], 119 ],
121 'includes': [ 'net_common.gypi' ], 120 'includes': [ 'net_common.gypi' ],
122 }, 121 },
123 { 122 {
124 # GN version: //net:net_unittests 123 # GN version: //net:net_unittests
125 'target_name': 'net_unittests', 124 'target_name': 'net_unittests',
126 'type': '<(gtest_target_type)', 125 'type': '<(gtest_target_type)',
127 'dependencies': [ 126 'dependencies': [
128 '../base/base.gyp:base', 127 '../base/base.gyp:base',
129 '../base/base.gyp:base_i18n', 128 '../base/base.gyp:base_i18n',
(...skipping 1497 matching lines...) Expand 10 before | Expand all | Expand 10 after
1627 '../build/isolate.gypi', 1626 '../build/isolate.gypi',
1628 ], 1627 ],
1629 'sources': [ 1628 'sources': [
1630 'net_unittests.isolate', 1629 'net_unittests.isolate',
1631 ], 1630 ],
1632 }, 1631 },
1633 ], 1632 ],
1634 }], 1633 }],
1635 ], 1634 ],
1636 } 1635 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698