| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |