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

Side by Side Diff: build/android/gyp/test/BUILD.gn

Issue 687633003: Greatly improve (non-android) java support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: junit_unittests -> java_binary Created 6 years, 1 month 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
OLDNEW
(Empty)
1 import("//build/config/android/rules.gni")
2
3 java_library("hello_world_java") {
4 java_files = [ "java/org/chromium/helloworld/HelloWorldPrinter.java" ]
5 }
6
7 java_binary("hello_world") {
8 deps = [ ":hello_world_java" ]
9 java_files = [ "java/org/chromium/helloworld/HelloWorldMain.java" ]
10 main_class = "org.chromium.helloworld.HelloWorldMain"
11 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698