forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace java_files with sources in //build/android
Replace usages of java_files with sources in above directory's gn files, and automatically format. [email protected] Bug: 1035074 Change-Id: Icd179380bcba508e87cad272b6d5aee1f72f56b5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1980874 Reviewed-by: Natalie Chouinard <[email protected]> Reviewed-by: Andrew Grieve <[email protected]> Commit-Queue: Natalie Chouinard <[email protected]> Cr-Commit-Position: refs/heads/master@{#727223}
- Loading branch information
1 parent
bc6a036
commit 3501fb8
Showing
6 changed files
with
21 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
import("//build/config/android/rules.gni") | ||
|
||
java_library("hello_world_java") { | ||
java_files = [ "java/org/chromium/helloworld/HelloWorldPrinter.java" ] | ||
sources = [ | ||
"java/org/chromium/helloworld/HelloWorldPrinter.java", | ||
] | ||
} | ||
|
||
java_binary("hello_world") { | ||
deps = [ | ||
":hello_world_java", | ||
] | ||
java_files = [ "java/org/chromium/helloworld/HelloWorldMain.java" ] | ||
sources = [ | ||
"java/org/chromium/helloworld/HelloWorldMain.java", | ||
] | ||
main_class = "org.chromium.helloworld.HelloWorldMain" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters