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
3 # found in the LICENSE file.
5 # This file is meant to be included into a target to provide a rule to build
6 # a JAR file for use on a host in a consistent manner. If a main class is
7 # specified, this file will also generate an executable to run the jar in the
8 # output folder's /bin/ directory.
10 # To use this, create a gyp target with the following form:
12 # 'target_name': 'my_jar',
16 # 'path/to/directory',
17 # 'path/to/other/directory',
18 # 'path/to/individual_file.java',
22 # 'includes': [ 'path/to/this/gypi/file' ],
26 # src_paths - A list of all paths containing java files that should be
27 # included in the jar. Paths can be either directories or files.
28 # Optional/automatic variables:
29 # excluded_src_paths - A list of all paths that should be excluded from
31 # generated_src_dirs - Directories containing additional .java files
32 # generated at build time.
33 # input_jars_paths - A list of paths to the jars that should be included
35 # main_class - The class containing the main() function that should be called
36 # when running the jar file.
37 # jar_excluded_classes - A list of .class files that should be excluded
42 '<(DEPTH)/build/android/setup.gyp:build_output_dirs',
45 'classes_dir': '<(intermediate_dir)/classes',
46 'excluded_src_paths': [],
47 'generated_src_dirs': [],
48 'input_jars_paths': [],
49 'intermediate_dir': '<(SHARED_INTERMEDIATE_DIR)/<(_target_name)',
50 'jar_dir': '<(PRODUCT_DIR)/lib.java',
51 'jar_excluded_classes': [],
52 'jar_name': '<(_target_name).jar',
53 'jar_path': '<(jar_dir)/<(jar_name)',
55 'stamp': '<(intermediate_dir)/jar.stamp',
57 ['chromium_code == 0', {
58 'enable_errorprone': 0,
61 'enable_errorprone%': 0,
62 'errorprone_exe_path': '<(PRODUCT_DIR)/bin.java/chromium_errorprone',
64 'all_dependent_settings': {
66 'input_jars_paths': ['<(jar_path)']
71 'action_name': 'javac_<(_target_name)',
72 'message': 'Compiling <(_target_name) java sources',
76 'java_sources': [ '<!@(find <@(src_paths) -name "*.java")' ],
78 ['"<(excluded_src_paths)" != ""', {
79 'java_sources!': ['<!@(find <@(excluded_src_paths) -name "*.java")']
81 ['"<(jar_excluded_classes)" != ""', {
82 'extra_args': ['--jar-excluded-classes=<(jar_excluded_classes)']
84 ['main_class != ""', {
85 'extra_args': ['--main-class=>(main_class)']
87 ['enable_errorprone == 1', {
89 '<(errorprone_exe_path)',
91 'extra_args': [ '--use-errorprone-path=<(errorprone_exe_path)' ],
96 '<(DEPTH)/build/android/gyp/util/build_utils.py',
97 '<(DEPTH)/build/android/gyp/javac.py',
99 '>@(input_jars_paths)',
107 'python', '<(DEPTH)/build/android/gyp/javac.py',
108 '--classpath=>(input_jars_paths)',
109 '--src-gendirs=>(generated_src_dirs)',
110 '--chromium-code=<(chromium_code)',
112 '--jar-path=<(jar_path)',
119 ['main_class != ""', {
122 'action_name': 'create_java_binary_script_<(_target_name)',
123 'message': 'Creating java binary script <(_target_name)',
125 'output': '<(PRODUCT_DIR)/bin/<(_target_name)',
128 '<(DEPTH)/build/android/gyp/create_java_binary_script.py',
135 'python', '<(DEPTH)/build/android/gyp/create_java_binary_script.py',
136 '--classpath=>(input_jars_paths)',
137 '--jar-path=<(jar_path)',
138 '--output=<(output)',
139 '--main-class=>(main_class)',
144 ['enable_errorprone == 1', {
146 '<(DEPTH)/third_party/errorprone/errorprone.gyp:require_errorprone',