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

Side by Side Diff: url/url.gyp

Issue 1756193007: Fix iOS GN build after r379128. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more fixes 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 | « url/run_all_unittests.cc ('k') | 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 }, 8 },
9 'includes': [ 9 'includes': [
10 'url_srcs.gypi', 10 'url_srcs.gypi',
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 'dependencies': [ 42 'dependencies': [
43 '../base/base.gyp:test_support_base', 43 '../base/base.gyp:test_support_base',
44 '../mojo/mojo_edk.gyp:mojo_common_test_support', 44 '../mojo/mojo_edk.gyp:mojo_common_test_support',
45 '../testing/gtest.gyp:gtest', 45 '../testing/gtest.gyp:gtest',
46 '../third_party/icu/icu.gyp:icuuc', 46 '../third_party/icu/icu.gyp:icuuc',
47 'url_test_mojom', 47 'url_test_mojom',
48 'url_lib', 48 'url_lib',
49 ], 49 ],
50 'sources': [ 50 'sources': [
51 'gurl_unittest.cc', 51 'gurl_unittest.cc',
52 'mojo/url_gurl_struct_traits_unittest.cc',
53 'origin_unittest.cc', 52 'origin_unittest.cc',
54 'run_all_unittests.cc', 53 'run_all_unittests.cc',
55 'scheme_host_port_unittest.cc', 54 'scheme_host_port_unittest.cc',
56 'url_canon_icu_unittest.cc', 55 'url_canon_icu_unittest.cc',
57 'url_canon_unittest.cc', 56 'url_canon_unittest.cc',
58 'url_parse_unittest.cc', 57 'url_parse_unittest.cc',
59 'url_test_utils.h', 58 'url_test_utils.h',
60 'url_util_unittest.cc', 59 'url_util_unittest.cc',
61 ], 60 ],
61 'conditions': [
62 ['OS!="ios"', {
63 'sources': [
64 'mojo/url_gurl_struct_traits_unittest.cc',
65 ],
66 }],
67 ],
62 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 68 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
63 'msvs_disabled_warnings': [4267, ], 69 'msvs_disabled_warnings': [4267, ],
64 }, 70 },
65 { 71 {
66 'target_name': 'url_interfaces_mojom', 72 'target_name': 'url_interfaces_mojom',
67 'type': 'none', 73 'type': 'none',
68 'variables': { 74 'variables': {
69 'mojom_files': [ 75 'mojom_files': [
70 'mojo/url.mojom', 76 'mojo/url.mojom',
71 ], 77 ],
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 '../build/isolate.gypi', 204 '../build/isolate.gypi',
199 ], 205 ],
200 'sources': [ 206 'sources': [
201 'url_unittests.isolate', 207 'url_unittests.isolate',
202 ], 208 ],
203 }, 209 },
204 ], 210 ],
205 }], 211 }],
206 ], 212 ],
207 } 213 }
OLDNEW
« no previous file with comments | « url/run_all_unittests.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698