| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 "url_parse_unittest.cc", | 125 "url_parse_unittest.cc", |
| 126 "url_test_utils.h", | 126 "url_test_utils.h", |
| 127 "url_util_unittest.cc", | 127 "url_util_unittest.cc", |
| 128 ] | 128 ] |
| 129 | 129 |
| 130 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 130 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 131 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 131 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 132 | 132 |
| 133 deps = [ | 133 deps = [ |
| 134 ":url", | 134 ":url", |
| 135 "ipc:url_ipc", | |
| 136 "//base", | 135 "//base", |
| 137 "//base/test:run_all_unittests", | 136 "//base/test:run_all_unittests", |
| 138 "//testing/gtest", | 137 "//testing/gtest", |
| 139 "//third_party/icu:icuuc", | 138 "//third_party/icu:icuuc", |
| 140 ] | 139 ] |
| 141 } | 140 } |
| 142 } | 141 } |
| OLD | NEW |