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

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

Issue 766573003: gn format //build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years 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 | « no previous file | build/compiled_action.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 import("//build/config/android/rules.gni") 1 import("//build/config/android/rules.gni")
2 2
3 java_library("hello_world_java") { 3 java_library("hello_world_java") {
4 java_files = [ "java/org/chromium/helloworld/HelloWorldPrinter.java" ] 4 java_files = [ "java/org/chromium/helloworld/HelloWorldPrinter.java" ]
5 } 5 }
6 6
7 java_binary("hello_world") { 7 java_binary("hello_world") {
8 deps = [ ":hello_world_java" ] 8 deps = [
9 ":hello_world_java",
10 ]
9 java_files = [ "java/org/chromium/helloworld/HelloWorldMain.java" ] 11 java_files = [ "java/org/chromium/helloworld/HelloWorldMain.java" ]
10 main_class = "org.chromium.helloworld.HelloWorldMain" 12 main_class = "org.chromium.helloworld.HelloWorldMain"
11 } 13 }
OLDNEW
« no previous file with comments | « no previous file | build/compiled_action.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698