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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 'sources': [ | 48 'sources': [ |
49 'gurl_unittest.cc', | 49 'gurl_unittest.cc', |
50 'origin_unittest.cc', | 50 'origin_unittest.cc', |
51 'scheme_host_port_unittest.cc', | 51 'scheme_host_port_unittest.cc', |
52 'url_canon_icu_unittest.cc', | 52 'url_canon_icu_unittest.cc', |
53 'url_canon_unittest.cc', | 53 'url_canon_unittest.cc', |
54 'url_parse_unittest.cc', | 54 'url_parse_unittest.cc', |
55 'url_test_utils.h', | 55 'url_test_utils.h', |
56 'url_util_unittest.cc', | 56 'url_util_unittest.cc', |
57 ], | 57 ], |
58 'conditions': [ | |
59 ['os_posix==1 and OS!="mac" and OS!="ios" and use_allocator!="none"', | |
60 { | |
61 'dependencies': [ | |
62 '../base/allocator/allocator.gyp:allocator', | |
63 ], | |
64 } | |
65 ], | |
66 ], | |
67 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 58 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
68 'msvs_disabled_warnings': [4267, ], | 59 'msvs_disabled_warnings': [4267, ], |
69 }, | 60 }, |
70 ], | 61 ], |
71 'conditions': [ | 62 'conditions': [ |
72 ['OS=="android"', { | 63 ['OS=="android"', { |
73 'targets': [ | 64 'targets': [ |
74 { | 65 { |
75 'target_name': 'url_jni_headers', | 66 'target_name': 'url_jni_headers', |
76 'type': 'none', | 67 'type': 'none', |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 '../build/isolate.gypi', | 127 '../build/isolate.gypi', |
137 ], | 128 ], |
138 'sources': [ | 129 'sources': [ |
139 'url_unittests.isolate', | 130 'url_unittests.isolate', |
140 ], | 131 ], |
141 }, | 132 }, |
142 ], | 133 ], |
143 }], | 134 }], |
144 ], | 135 ], |
145 } | 136 } |
OLD | NEW |