| 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 29 matching lines...) Expand all Loading... |
| 40 'target_name': 'url_unittests', | 40 'target_name': 'url_unittests', |
| 41 'type': 'executable', | 41 'type': 'executable', |
| 42 'dependencies': [ | 42 'dependencies': [ |
| 43 '../base/base.gyp:run_all_unittests', | 43 '../base/base.gyp:run_all_unittests', |
| 44 '../testing/gtest.gyp:gtest', | 44 '../testing/gtest.gyp:gtest', |
| 45 '../third_party/icu/icu.gyp:icuuc', | 45 '../third_party/icu/icu.gyp:icuuc', |
| 46 'url_lib', | 46 'url_lib', |
| 47 ], | 47 ], |
| 48 'sources': [ | 48 'sources': [ |
| 49 'gurl_unittest.cc', | 49 'gurl_unittest.cc', |
| 50 'origin_filter_unittest.cc', |
| 50 'origin_unittest.cc', | 51 'origin_unittest.cc', |
| 51 'scheme_host_port_unittest.cc', | 52 'scheme_host_port_unittest.cc', |
| 52 'url_canon_icu_unittest.cc', | 53 'url_canon_icu_unittest.cc', |
| 53 'url_canon_unittest.cc', | 54 'url_canon_unittest.cc', |
| 54 'url_parse_unittest.cc', | 55 'url_parse_unittest.cc', |
| 55 'url_test_utils.h', | 56 'url_test_utils.h', |
| 56 'url_util_unittest.cc', | 57 'url_util_unittest.cc', |
| 57 ], | 58 ], |
| 58 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 59 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 59 'msvs_disabled_warnings': [4267, ], | 60 'msvs_disabled_warnings': [4267, ], |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 '../build/isolate.gypi', | 128 '../build/isolate.gypi', |
| 128 ], | 129 ], |
| 129 'sources': [ | 130 'sources': [ |
| 130 'url_unittests.isolate', | 131 'url_unittests.isolate', |
| 131 ], | 132 ], |
| 132 }, | 133 }, |
| 133 ], | 134 ], |
| 134 }], | 135 }], |
| 135 ], | 136 ], |
| 136 } | 137 } |
| OLD | NEW |