| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 # Don't conflict with Windows' "url.dll". | 56 # Don't conflict with Windows' "url.dll". |
| 57 output_name = "url_lib" | 57 output_name = "url_lib" |
| 58 } | 58 } |
| 59 defines = [ "URL_IMPLEMENTATION" ] | 59 defines = [ "URL_IMPLEMENTATION" ] |
| 60 | 60 |
| 61 configs += [ | 61 configs += [ |
| 62 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 62 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 63 "//build/config/compiler:no_size_t_to_int_warning", | 63 "//build/config/compiler:no_size_t_to_int_warning", |
| 64 ] | 64 ] |
| 65 | 65 |
| 66 public_deps = [ |
| 67 "ipc:url_ipc", |
| 68 ] |
| 66 deps = [ | 69 deps = [ |
| 67 "//base", | 70 "//base", |
| 68 "//base/third_party/dynamic_annotations", | 71 "//base/third_party/dynamic_annotations", |
| 69 "//third_party/icu", | 72 "//third_party/icu", |
| 70 "//third_party/icu:icudata", | 73 "//third_party/icu:icudata", |
| 71 ] | 74 ] |
| 72 } | 75 } |
| 73 | 76 |
| 74 if (is_android) { | 77 if (is_android) { |
| 75 android_library("url_java") { | 78 android_library("url_java") { |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 | 135 |
| 133 deps = [ | 136 deps = [ |
| 134 ":url", | 137 ":url", |
| 135 "//base", | 138 "//base", |
| 136 "//base/test:run_all_unittests", | 139 "//base/test:run_all_unittests", |
| 137 "//testing/gtest", | 140 "//testing/gtest", |
| 138 "//third_party/icu:icuuc", | 141 "//third_party/icu:icuuc", |
| 139 ] | 142 ] |
| 140 } | 143 } |
| 141 } | 144 } |
| OLD | NEW |