Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Side by Side Diff: url/BUILD.gn

Issue 1829823002: Replace usages of DEPRECATED_java_in_dir with java_files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: zap random comment Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/android/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « ui/android/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698