OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # This file is meant to be included into a target to provide a rule | 5 # This file is meant to be included into a target to provide a rule |
6 # to build Java in a consistent manner. | 6 # to build Java in a consistent manner. |
7 # | 7 # |
8 # To use this, create a gyp target with the following form: | 8 # To use this, create a gyp target with the following form: |
9 # { | 9 # { |
10 # 'target_name': 'my-package_java', | 10 # 'target_name': 'my-package_java', |
(...skipping 23 matching lines...) Expand all Loading... |
34 # wildcard, and supports '**/' for recursive path wildcards, ie.: | 34 # wildcard, and supports '**/' for recursive path wildcards, ie.: |
35 # '**/MyFileRegardlessOfDirectory.java', '**/IncludedPrefix*.java'. | 35 # '**/MyFileRegardlessOfDirectory.java', '**/IncludedPrefix*.java'. |
36 # has_java_resources - Set to 1 if the java target contains an | 36 # has_java_resources - Set to 1 if the java target contains an |
37 # Android-compatible resources folder named res. If 1, R_package and | 37 # Android-compatible resources folder named res. If 1, R_package and |
38 # R_package_relpath must also be set. | 38 # R_package_relpath must also be set. |
39 # R_package - The java package in which the R class (which maps resources to | 39 # R_package - The java package in which the R class (which maps resources to |
40 # integer IDs) should be generated, e.g. org.chromium.content. | 40 # integer IDs) should be generated, e.g. org.chromium.content. |
41 # R_package_relpath - Same as R_package, but replace each '.' with '/'. | 41 # R_package_relpath - Same as R_package, but replace each '.' with '/'. |
42 # java_strings_grd - The name of the grd file from which to generate localized | 42 # java_strings_grd - The name of the grd file from which to generate localized |
43 # strings.xml files, if any. | 43 # strings.xml files, if any. |
| 44 # res_extra_dirs - A list of extra directories containing Android resources. |
| 45 # These directories may be generated at build time. |
| 46 # res_extra_files - A list of the files in res_extra_dirs. |
44 | 47 |
45 { | 48 { |
46 'dependencies': [ | 49 'dependencies': [ |
47 '<(DEPTH)/build/build_output_dirs_android.gyp:build_output_dirs' | 50 '<(DEPTH)/build/build_output_dirs_android.gyp:build_output_dirs' |
48 ], | 51 ], |
49 'variables': { | 52 'variables': { |
50 'input_jars_paths': [ '<(android_sdk_jar)' ], | 53 'input_jars_paths': [ '<(android_sdk_jar)' ], |
51 'additional_src_dirs': [], | 54 'additional_src_dirs': [], |
52 'javac_includes': [], | 55 'javac_includes': [], |
53 'jar_name': '<(_target_name).jar', | 56 'jar_name': '<(_target_name).jar', |
54 'jar_path': '<(PRODUCT_DIR)/lib.java/<(jar_name)', | 57 'jar_path': '<(PRODUCT_DIR)/lib.java/<(jar_name)', |
55 'excluded_classes': [ '*/R.class', '*/R##*.class' ], | 58 'excluded_classes': [ '*/R.class', '*/R##*.class' ], |
56 'additional_input_paths': ['>@(additional_R_files)'], | 59 'additional_input_paths': ['>@(additional_R_files)'], |
57 'generated_src_dirs': ['>@(generated_R_dirs)'], | 60 'generated_src_dirs': ['>@(generated_R_dirs)'], |
58 'generated_R_dirs': [], | 61 'generated_R_dirs': [], |
59 'additional_R_files': [], | 62 'additional_R_files': [], |
60 'has_java_resources%': 0, | 63 'has_java_resources%': 0, |
61 'java_strings_grd%': '', | 64 'java_strings_grd%': '', |
| 65 'res_grit_files': [], |
| 66 'res_extra_dirs': [], |
| 67 'res_extra_files': [], |
62 'intermediate_dir': '<(SHARED_INTERMEDIATE_DIR)/<(_target_name)', | 68 'intermediate_dir': '<(SHARED_INTERMEDIATE_DIR)/<(_target_name)', |
63 'classes_dir': '<(intermediate_dir)/classes', | 69 'classes_dir': '<(intermediate_dir)/classes', |
64 'compile_stamp': '<(intermediate_dir)/compile.stamp', | 70 'compile_stamp': '<(intermediate_dir)/compile.stamp', |
65 }, | 71 }, |
66 # This all_dependent_settings is used for java targets only. This will add the | 72 # This all_dependent_settings is used for java targets only. This will add the |
67 # jar path to the classpath of dependent java targets. | 73 # jar path to the classpath of dependent java targets. |
68 'all_dependent_settings': { | 74 'all_dependent_settings': { |
69 'variables': { | 75 'variables': { |
70 'input_jars_paths': ['<(jar_path)'], | 76 'input_jars_paths': ['<(jar_path)'], |
71 }, | 77 }, |
72 }, | 78 }, |
73 'conditions': [ | 79 'conditions': [ |
74 ['has_java_resources == 1', { | 80 ['has_java_resources == 1', { |
75 'variables': { | 81 'variables': { |
76 'res_dir': '<(java_in_dir)/res', | 82 'res_dir': '<(java_in_dir)/res', |
77 'out_res_dir': '<(intermediate_dir)/res', | 83 'res_crunched_dir': '<(intermediate_dir)/res_crunched', |
| 84 'res_input_dirs': ['<(res_dir)', '<@(res_extra_dirs)'], |
78 'R_dir': '<(intermediate_dir)/java_R', | 85 'R_dir': '<(intermediate_dir)/java_R', |
79 'R_file': '<(R_dir)/<(R_package_relpath)/R.java', | 86 'R_file': '<(R_dir)/<(R_package_relpath)/R.java', |
80 'R_text_file': '<(R_dir)/R.txt', | 87 'R_text_file': '<(R_dir)/R.txt', |
81 'generated_src_dirs': ['<(R_dir)'], | 88 'generated_src_dirs': ['<(R_dir)'], |
82 'additional_input_paths': ['<(R_file)'], | 89 'additional_input_paths': ['<(R_file)'], |
83 # grit_grd_file is used by grit_action.gypi, included below. | |
84 'grit_grd_file': '<(java_in_dir)/strings/<(java_strings_grd)', | |
85 }, | 90 }, |
86 'all_dependent_settings': { | 91 'all_dependent_settings': { |
87 'variables': { | 92 'variables': { |
88 # Dependent jars include this target's R.java file via | 93 # Dependent jars include this target's R.java file via |
89 # generated_R_dirs and additional_R_files. | 94 # generated_R_dirs and additional_R_files. |
90 'generated_R_dirs': ['<(R_dir)'], | 95 'generated_R_dirs': ['<(R_dir)'], |
91 'additional_R_files': ['<(R_file)'], | 96 'additional_R_files': ['<(R_file)'], |
92 'additional_R_text_files': ['<(R_text_file)'], | 97 'additional_R_text_files': ['<(R_text_file)'], |
93 | 98 |
94 # Dependent APKs include this target's resources via | 99 # Dependent APKs include this target's resources via |
95 # additional_res_dirs and additional_res_packages. | 100 # additional_res_dirs and additional_res_packages. |
96 'additional_res_dirs': ['<(out_res_dir)', '<(res_dir)'], | 101 'additional_res_dirs': ['<(res_crunched_dir)', '<@(res_input_dirs)'], |
97 'additional_res_packages': ['<(R_package)'], | 102 'additional_res_packages': ['<(R_package)'], |
98 }, | 103 }, |
99 }, | 104 }, |
100 'conditions': [ | 105 'conditions': [ |
101 ['java_strings_grd != ""', { | 106 ['java_strings_grd != ""', { |
| 107 'variables': { |
| 108 'res_grit_dir': '<(intermediate_dir)/res_grit', |
| 109 'res_input_dirs': ['<(res_grit_dir)'], |
| 110 'grit_grd_file': '<(java_in_dir)/strings/<(java_strings_grd)', |
| 111 'res_grit_files': ['<!@pymod_do_main(grit_info <@(grit_defines) --ou
tputs "<(res_grit_dir)" <(grit_grd_file))'], |
| 112 }, |
102 'actions': [ | 113 'actions': [ |
103 { | 114 { |
104 'action_name': 'generate_localized_strings_xml', | 115 'action_name': 'generate_localized_strings_xml', |
105 'variables': { | 116 'variables': { |
106 'grit_out_dir': '<(out_res_dir)', | 117 'grit_additional_defines': ['-E', 'ANDROID_JAVA_TAGGED_ONLY=fals
e'], |
| 118 'grit_out_dir': '<(res_grit_dir)', |
107 # resource_ids is unneeded since we don't generate .h headers. | 119 # resource_ids is unneeded since we don't generate .h headers. |
108 'grit_resource_ids': '', | 120 'grit_resource_ids': '', |
109 }, | 121 }, |
110 'includes': ['../build/grit_action.gypi'], | 122 'includes': ['../build/grit_action.gypi'], |
111 }, | 123 }, |
112 ], | 124 ], |
113 }], | 125 }], |
114 ], | 126 ], |
115 'actions': [ | 127 'actions': [ |
116 # Generate R.java and crunch image resources. | 128 # Generate R.java and crunch image resources. |
117 { | 129 { |
118 'action_name': 'process_resources', | 130 'action_name': 'process_resources', |
119 'message': 'processing resources for <(_target_name)', | 131 'message': 'processing resources for <(_target_name)', |
120 'conditions': [ | |
121 ['java_strings_grd != ""', { | |
122 'inputs': [ | |
123 # TODO(newt): replace this with .../values/strings.xml once | |
124 # the English strings.xml is generated as well? That would be | |
125 # simpler and faster and should be equivalent. | |
126 '<!@pymod_do_main(grit_info <@(grit_defines) --outputs "<(out_re
s_dir)" <(grit_grd_file))', | |
127 ], | |
128 }], | |
129 ], | |
130 'inputs': [ | 132 'inputs': [ |
131 '<(DEPTH)/build/android/process_resources.py', | 133 '<(DEPTH)/build/android/process_resources.py', |
132 '<!@(find <(res_dir) -type f)', | 134 '<!@(find <(res_dir) -type f)', |
| 135 '<@(res_grit_files)', |
| 136 '<@(res_extra_files)', |
133 ], | 137 ], |
134 'outputs': [ | 138 'outputs': [ |
135 '<(R_file)', | 139 '<(R_file)', |
136 ], | 140 ], |
137 'action': [ | 141 'action': [ |
138 '<(DEPTH)/build/android/process_resources.py', | 142 '<(DEPTH)/build/android/process_resources.py', |
139 '--android-sdk', '<(android_sdk)', | 143 '--android-sdk', '<(android_sdk)', |
140 '--android-sdk-tools', '<(android_sdk_tools)', | 144 '--android-sdk-tools', '<(android_sdk_tools)', |
141 '--R-package', '<(R_package)', | 145 '--R-package', '<(R_package)', |
142 '--R-dir', '<(R_dir)', | 146 '--R-dir', '<(R_dir)', |
143 '--res-dir', '<(res_dir)', | 147 '--res-input-dirs', '<(res_input_dirs)', |
144 '--out-res-dir', '<(out_res_dir)', | 148 '--res-crunched-dir', '<(res_crunched_dir)', |
145 | 149 |
146 # Add list of inputs to the command line, so if inputs change | 150 # Add hash of inputs to the command line, so if inputs change |
147 # (e.g. if a resource if removed), the command will be re-run. | 151 # (e.g. if a resource if removed), the command will be re-run. |
148 # TODO(newt): remove this once crbug.com/177552 is fixed in ninja. | 152 # TODO(newt): remove this once crbug.com/177552 is fixed in ninja. |
149 '--ignore', '>(_inputs)', | 153 '--ignore', '>!(echo >(_inputs) | md5sum)', |
150 ], | 154 ], |
151 }, | 155 }, |
152 ], | 156 ], |
153 }], | 157 }], |
154 ], | 158 ], |
155 'actions': [ | 159 'actions': [ |
156 { | 160 { |
157 'action_name': 'javac_<(_target_name)', | 161 'action_name': 'javac_<(_target_name)', |
158 'message': 'Compiling <(_target_name) java sources', | 162 'message': 'Compiling <(_target_name) java sources', |
159 'variables': { | 163 'variables': { |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 '--classes-dir=<(classes_dir)', | 205 '--classes-dir=<(classes_dir)', |
202 '--jar-path=<(jar_path)', | 206 '--jar-path=<(jar_path)', |
203 '--excluded-classes=<(excluded_classes)', | 207 '--excluded-classes=<(excluded_classes)', |
204 | 208 |
205 # TODO(newt): remove this once http://crbug.com/177552 is fixed in ninja
. | 209 # TODO(newt): remove this once http://crbug.com/177552 is fixed in ninja
. |
206 '--ignore=>!(echo \'>(_inputs)\' | md5sum)', | 210 '--ignore=>!(echo \'>(_inputs)\' | md5sum)', |
207 ] | 211 ] |
208 }, | 212 }, |
209 ], | 213 ], |
210 } | 214 } |
OLD | NEW |