ThreadWatcher - run JankTimeBomb::Alarm test only in the channels it is
[chromium-blink-merge.git] / build / host_jar.gypi
blob59e0f25df4f5fc3caaf6e3456112f99ee9e95c34
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:
11 # {
12 #   'target_name': 'my_jar',
13 #   'type': 'none',
14 #   'variables': {
15 #     'src_paths': [
16 #       'path/to/directory',
17 #       'path/to/other/directory',
18 #       'path/to/individual_file.java',
19 #       ...
20 #     ],
21 #   },
22 #   'includes': [ 'path/to/this/gypi/file' ],
23 # }
25 # Required variables:
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
30 #     the jar.
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
34 #     in the classpath.
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
38 #     from the jar.
41   'dependencies': [
42     '<(DEPTH)/build/android/setup.gyp:build_output_dirs',
43   ],
44   'variables': {
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)',
54     'main_class%': '',
55     'stamp': '<(intermediate_dir)/jar.stamp',
56     'conditions': [
57       ['chromium_code == 0', {
58         'enable_errorprone': 0,
59       }],
60     ],
61     'enable_errorprone%': 0,
62     'errorprone_exe_path': '<(PRODUCT_DIR)/bin.java/chromium_errorprone',
63   },
64   'all_dependent_settings': {
65     'variables': {
66       'input_jars_paths': ['<(jar_path)']
67     },
68   },
69   'actions': [
70     {
71       'action_name': 'javac_<(_target_name)',
72       'message': 'Compiling <(_target_name) java sources',
73       'variables': {
74         'extra_args': [],
75         'extra_inputs': [],
76         'java_sources': [ '<!@(find <@(src_paths) -name "*.java")' ],
77         'conditions': [
78           ['"<(excluded_src_paths)" != ""', {
79             'java_sources!': ['<!@(find <@(excluded_src_paths) -name "*.java")']
80           }],
81           ['"<(jar_excluded_classes)" != ""', {
82             'extra_args': ['--jar-excluded-classes=<(jar_excluded_classes)']
83           }],
84           ['main_class != ""', {
85             'extra_args': ['--main-class=>(main_class)']
86           }],
87           ['enable_errorprone == 1', {
88             'extra_inputs': [
89               '<(errorprone_exe_path)',
90             ],
91             'extra_args': [ '--use-errorprone-path=<(errorprone_exe_path)' ],
92           }],
93         ],
94       },
95       'inputs': [
96         '<(DEPTH)/build/android/gyp/util/build_utils.py',
97         '<(DEPTH)/build/android/gyp/javac.py',
98         '^@(java_sources)',
99         '>@(input_jars_paths)',
100         '<@(extra_inputs)',
101       ],
102       'outputs': [
103         '<(jar_path)',
104         '<(stamp)',
105       ],
106       'action': [
107         'python', '<(DEPTH)/build/android/gyp/javac.py',
108         '--classpath=>(input_jars_paths)',
109         '--src-gendirs=>(generated_src_dirs)',
110         '--chromium-code=<(chromium_code)',
111         '--stamp=<(stamp)',
112         '--jar-path=<(jar_path)',
113         '<@(extra_args)',
114         '^@(java_sources)',
115       ],
116     },
117   ],
118   'conditions': [
119     ['main_class != ""', {
120       'actions': [
121         {
122           'action_name': 'create_java_binary_script_<(_target_name)',
123           'message': 'Creating java binary script <(_target_name)',
124           'variables': {
125             'output': '<(PRODUCT_DIR)/bin/<(_target_name)',
126           },
127           'inputs': [
128             '<(DEPTH)/build/android/gyp/create_java_binary_script.py',
129             '<(jar_path)',
130           ],
131           'outputs': [
132             '<(output)',
133           ],
134           'action': [
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)',
140           ]
141         }
142       ]
143     }],
144     ['enable_errorprone == 1', {
145       'dependencies': [
146         '<(DEPTH)/third_party/errorprone/errorprone.gyp:require_errorprone',
147       ],
148     }],
149   ]