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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 deps = [ | 66 deps = [ |
67 "//base", | 67 "//base", |
68 "//base/third_party/dynamic_annotations", | 68 "//base/third_party/dynamic_annotations", |
| 69 "//third_party/icu", |
69 "//third_party/icu:icudata", | 70 "//third_party/icu:icudata", |
70 "//third_party/icu", | |
71 ] | 71 ] |
72 } | 72 } |
73 | 73 |
74 if (is_android) { | 74 if (is_android) { |
75 generate_jni("url_jni_headers") { | 75 generate_jni("url_jni_headers") { |
76 sources = [ | 76 sources = [ |
77 "android/java/src/org/chromium/url/IDNStringUtil.java", | 77 "android/java/src/org/chromium/url/IDNStringUtil.java", |
78 ] | 78 ] |
79 jni_package = "url" | 79 jni_package = "url" |
80 } | 80 } |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 | 139 |
140 deps = [ | 140 deps = [ |
141 ":url", | 141 ":url", |
142 "//base", | 142 "//base", |
143 "//base/test:run_all_unittests", | 143 "//base/test:run_all_unittests", |
144 "//testing/gtest", | 144 "//testing/gtest", |
145 "//third_party/icu:icuuc", | 145 "//third_party/icu:icuuc", |
146 ] | 146 ] |
147 } | 147 } |
148 } | 148 } |
OLD | NEW |