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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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", |
70 "//third_party/icu:icudata", | 70 "//third_party/icu:icudata", |
71 ] | 71 ] |
72 } | 72 } |
73 | 73 |
74 if (is_android) { | 74 if (is_android) { |
75 android_library("url_java") { | 75 android_library("url_java") { |
76 DEPRECATED_java_in_dir = "android/java/src" | 76 java_files = [ "android/java/src/org/chromium/url/IDNStringUtil.java" ] |
77 deps = [ | 77 deps = [ |
78 "//base:base_java", | 78 "//base:base_java", |
79 ] | 79 ] |
80 } | 80 } |
81 | 81 |
82 generate_jni("url_jni_headers") { | 82 generate_jni("url_jni_headers") { |
83 sources = [ | 83 sources = [ |
84 "android/java/src/org/chromium/url/IDNStringUtil.java", | 84 "android/java/src/org/chromium/url/IDNStringUtil.java", |
85 ] | 85 ] |
86 jni_package = "url" | 86 jni_package = "url" |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 ] | 142 ] |
143 | 143 |
144 if (!is_ios) { | 144 if (!is_ios) { |
145 deps += [ | 145 deps += [ |
146 "//mojo/edk/system", | 146 "//mojo/edk/system", |
147 "//mojo/edk/test:test_support", | 147 "//mojo/edk/test:test_support", |
148 "//url/mojo:test_url_mojom_gurl", | 148 "//url/mojo:test_url_mojom_gurl", |
149 ] | 149 ] |
150 } | 150 } |
151 } | 151 } |
OLD | NEW |