Disable unsupported AutocompleteProviders on iOS.
[chromium-blink-merge.git] / build / host_jar.gypi
bloba47f6bbdd99dd215b5375a9c6dcc47437522e696
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     'enable_errorprone%': '0',
57     'errorprone_exe_path': '<(PRODUCT_DIR)/bin.java/chromium_errorprone',
58   },
59   'all_dependent_settings': {
60     'variables': {
61       'input_jars_paths': ['<(jar_path)']
62     },
63   },
64   'actions': [
65     {
66       'action_name': 'javac_<(_target_name)',
67       'message': 'Compiling <(_target_name) java sources',
68       'variables': {
69         'extra_args': [],
70         'extra_inputs': [],
71         'java_sources': [ '<!@(find <@(src_paths) -name "*.java")' ],
72         'conditions': [
73           ['"<(excluded_src_paths)" != ""', {
74             'java_sources!': ['<!@(find <@(excluded_src_paths) -name "*.java")']
75           }],
76           ['"<(jar_excluded_classes)" != ""', {
77             'extra_args': ['--jar-excluded-classes=<(jar_excluded_classes)']
78           }],
79           ['main_class != ""', {
80             'extra_args': ['--main-class=>(main_class)']
81           }],
82           ['enable_errorprone == 1', {
83             'extra_inputs': [
84               '<(errorprone_exe_path)',
85             ],
86             'extra_args': [ '--use-errorprone-path=<(errorprone_exe_path)' ],
87           }],
88         ],
89       },
90       'inputs': [
91         '<(DEPTH)/build/android/gyp/util/build_utils.py',
92         '<(DEPTH)/build/android/gyp/javac.py',
93         '^@(java_sources)',
94         '>@(input_jars_paths)',
95         '<@(extra_inputs)',
96       ],
97       'outputs': [
98         '<(jar_path)',
99         '<(stamp)',
100       ],
101       'action': [
102         'python', '<(DEPTH)/build/android/gyp/javac.py',
103         '--classpath=>(input_jars_paths)',
104         '--src-gendirs=>(generated_src_dirs)',
105         '--chromium-code=<(chromium_code)',
106         '--stamp=<(stamp)',
107         '--jar-path=<(jar_path)',
108         '<@(extra_args)',
109         '^@(java_sources)',
110       ],
111     },
112   ],
113   'conditions': [
114     ['main_class != ""', {
115       'actions': [
116         {
117           'action_name': 'create_java_binary_script_<(_target_name)',
118           'message': 'Creating java binary script <(_target_name)',
119           'variables': {
120             'output': '<(PRODUCT_DIR)/bin/<(_target_name)',
121           },
122           'inputs': [
123             '<(DEPTH)/build/android/gyp/create_java_binary_script.py',
124             '<(jar_path)',
125           ],
126           'outputs': [
127             '<(output)',
128           ],
129           'action': [
130             'python', '<(DEPTH)/build/android/gyp/create_java_binary_script.py',
131             '--classpath=>(input_jars_paths)',
132             '--jar-path=<(jar_path)',
133             '--output=<(output)',
134             '--main-class=>(main_class)',
135           ]
136         }
137       ]
138     }],
139     ['enable_errorprone == 1', {
140       'dependencies': [
141         '<(DEPTH)/third_party/errorprone/errorprone.gyp:chromium_errorprone',
142       ],
143     }],
144   ]