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

Side by Side Diff: third_party/errorprone/BUILD.gn

Issue 2350843003: Remove GYP annotations from third_party GN files. (Closed)
Patch Set: Created 4 years, 3 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 | « third_party/decklink/BUILD.gn ('k') | third_party/kasko/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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("//build/config/android/rules.gni") 5 import("//build/config/android/rules.gni")
6 6
7 # GYP: //third_party/errorprone/errorprone.gyp:error_prone_annotation_jar
8 java_prebuilt("error_prone_annotation_java") { 7 java_prebuilt("error_prone_annotation_java") {
9 jar_path = "lib/error_prone_annotation-2.0.5.jar" 8 jar_path = "lib/error_prone_annotation-2.0.5.jar"
10 } 9 }
11 10
12 # GYP: //third_party/errorprone/errorprone.gyp:error_prone_annotations_jar
13 java_prebuilt("error_prone_annotations_java") { 11 java_prebuilt("error_prone_annotations_java") {
14 jar_path = "lib/error_prone_annotations-2.0.5.jar" 12 jar_path = "lib/error_prone_annotations-2.0.5.jar"
15 } 13 }
16 14
17 # GYP: //third_party/errorprone/errorprone.gyp:javac_jar
18 java_prebuilt("javac_java") { 15 java_prebuilt("javac_java") {
19 jar_path = "lib/javac-1.9.0-dev-r2644-1.jar" 16 jar_path = "lib/javac-1.9.0-dev-r2644-1.jar"
20 } 17 }
21 18
22 # GYP: //third_party/errorprone/errorprone.gyp:dataflow_jar
23 java_prebuilt("dataflow_java") { 19 java_prebuilt("dataflow_java") {
24 jar_path = "lib/dataflow-1.8.10.jar" 20 jar_path = "lib/dataflow-1.8.10.jar"
25 } 21 }
26 22
27 # GYP: //third_party/errorprone/errorprone.gyp:javacutil_jar
28 java_prebuilt("javacutil_java") { 23 java_prebuilt("javacutil_java") {
29 jar_path = "lib/javacutil-1.8.10.jar" 24 jar_path = "lib/javacutil-1.8.10.jar"
30 } 25 }
31 26
32 # GYP: //third_party/errorprone/errorprone.gyp:chromium_errorprone
33 java_prebuilt("chromium_errorprone") { 27 java_prebuilt("chromium_errorprone") {
34 jar_path = "lib/error_prone_core-2.0.5.jar" 28 jar_path = "lib/error_prone_core-2.0.5.jar"
35 deps = [ 29 deps = [
36 ":dataflow_java", 30 ":dataflow_java",
37 ":error_prone_annotation_java", 31 ":error_prone_annotation_java",
38 ":error_prone_annotations_java", 32 ":error_prone_annotations_java",
39 ":javac_java", 33 ":javac_java",
40 ":javacutil_java", 34 ":javacutil_java",
41 "//third_party/findbugs:format_string_java", 35 "//third_party/findbugs:format_string_java",
42 ] 36 ]
43 main_class = "com.google.errorprone.ErrorProneCompiler" 37 main_class = "com.google.errorprone.ErrorProneCompiler"
44 38
45 # TODO(mikecase): Remove this extra arg when the bots are on jdk8 or higher. 39 # TODO(mikecase): Remove this extra arg when the bots are on jdk8 or higher.
46 bootclasspath = 40 bootclasspath =
47 "$root_build_dir/lib.java/third_party/errorprone/javac_java.jar" 41 "$root_build_dir/lib.java/third_party/errorprone/javac_java.jar"
48 } 42 }
OLDNEW
« no previous file with comments | « third_party/decklink/BUILD.gn ('k') | third_party/kasko/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698