OLD | NEW |
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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 '../third_party/icu/icu.gyp:icuuc', | 67 '../third_party/icu/icu.gyp:icuuc', |
68 ], | 68 ], |
69 }], | 69 }], |
70 ], | 70 ], |
71 }, | 71 }, |
72 { | 72 { |
73 'target_name': 'url_unittests', | 73 'target_name': 'url_unittests', |
74 'type': 'executable', | 74 'type': 'executable', |
75 'dependencies': [ | 75 'dependencies': [ |
76 '../base/base.gyp:test_support_base', | 76 '../base/base.gyp:test_support_base', |
77 '../mojo/mojo_edk.gyp:mojo_common_test_support', | |
78 '../testing/gtest.gyp:gtest', | 77 '../testing/gtest.gyp:gtest', |
79 '../third_party/icu/icu.gyp:icuuc', | 78 '../third_party/icu/icu.gyp:icuuc', |
80 'url_test_mojom', | 79 'url_test_mojom', |
81 'url_lib', | 80 'url_lib', |
82 ], | 81 ], |
83 'sources': [ | 82 'sources': [ |
84 'gurl_unittest.cc', | 83 'gurl_unittest.cc', |
85 'origin_unittest.cc', | 84 'origin_unittest.cc', |
86 'run_all_unittests.cc', | 85 'run_all_unittests.cc', |
87 'scheme_host_port_unittest.cc', | 86 'scheme_host_port_unittest.cc', |
88 'url_canon_icu_unittest.cc', | 87 'url_canon_icu_unittest.cc', |
89 'url_canon_unittest.cc', | 88 'url_canon_unittest.cc', |
90 'url_parse_unittest.cc', | 89 'url_parse_unittest.cc', |
91 'url_test_utils.h', | 90 'url_test_utils.h', |
92 'url_util_unittest.cc', | 91 'url_util_unittest.cc', |
93 ], | 92 ], |
94 'conditions': [ | 93 'conditions': [ |
95 ['OS!="ios"', { | 94 ['OS!="ios"', { |
96 'sources': [ | 95 'sources': [ |
97 'mojo/url_gurl_struct_traits_unittest.cc', | 96 'mojo/url_gurl_struct_traits_unittest.cc', |
98 ], | 97 ], |
| 98 'dependencies': [ |
| 99 '../mojo/mojo_edk.gyp:mojo_common_test_support', |
| 100 ], |
99 }], | 101 }], |
100 # Unit tests that are not supported by the current ICU alternatives on A
ndroid. | 102 # Unit tests that are not supported by the current ICU alternatives on A
ndroid. |
101 ['OS == "android" and use_platform_icu_alternatives == 1', { | 103 ['OS == "android" and use_platform_icu_alternatives == 1', { |
102 'sources!': [ | 104 'sources!': [ |
103 'url_canon_icu_unittest.cc', | 105 'url_canon_icu_unittest.cc', |
104 ], | 106 ], |
105 }], | 107 }], |
106 # Unit tests that are not supported by the current ICU alternatives on i
OS. | 108 # Unit tests that are not supported by the current ICU alternatives on i
OS. |
107 ['OS == "ios" and use_platform_icu_alternatives == 1', { | 109 ['OS == "ios" and use_platform_icu_alternatives == 1', { |
108 'sources!': [ | 110 'sources!': [ |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 '../build/isolate.gypi', | 226 '../build/isolate.gypi', |
225 ], | 227 ], |
226 'sources': [ | 228 'sources': [ |
227 'url_unittests.isolate', | 229 'url_unittests.isolate', |
228 ], | 230 ], |
229 }, | 231 }, |
230 ], | 232 ], |
231 }], | 233 }], |
232 ], | 234 ], |
233 } | 235 } |
OLD | NEW |