| 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 28 matching lines...) Expand all Loading... |
| 39 { | 39 { |
| 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 'deprecated_serialized_origin_unittest.cc', |
| 49 'gurl_unittest.cc', | 50 'gurl_unittest.cc', |
| 50 'deprecated_serialized_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 'conditions': [ | 59 'conditions': [ |
| 59 ['os_posix==1 and OS!="mac" and OS!="ios" and use_allocator!="none"', | 60 ['os_posix==1 and OS!="mac" and OS!="ios" and use_allocator!="none"', |
| 60 { | 61 { |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 '../build/isolate.gypi', | 137 '../build/isolate.gypi', |
| 137 ], | 138 ], |
| 138 'sources': [ | 139 'sources': [ |
| 139 'url_unittests.isolate', | 140 'url_unittests.isolate', |
| 140 ], | 141 ], |
| 141 }, | 142 }, |
| 142 ], | 143 ], |
| 143 }], | 144 }], |
| 144 ], | 145 ], |
| 145 } | 146 } |
| OLD | NEW |