Chromium Code Reviews| Index: build/java.gypi |
| diff --git a/build/java.gypi b/build/java.gypi |
| index 641dc7799f47a055e4f58692a5c523dac7f13e64..24ea0f7af2ee5a643668b352d6a345b076964430 100644 |
| --- a/build/java.gypi |
| +++ b/build/java.gypi |
| @@ -69,7 +69,7 @@ |
| 'res_v14_verify_only%': 0, |
| 'resource_input_paths': ['>@(res_extra_files)'], |
| 'intermediate_dir': '<(SHARED_INTERMEDIATE_DIR)/<(_target_name)', |
| - 'classes_dir': '<(intermediate_dir)/classes', |
| + 'classes_dir': '<(intermediate_dir)/classes/1/', |
|
newt (away)
2014/06/16 18:48:46
why /1/ ?
cjhopman
2014/06/23 14:48:43
Done. I was just confirming to myself that none of
|
| 'compile_stamp': '<(intermediate_dir)/compile.stamp', |
| 'lint_stamp': '<(intermediate_dir)/lint.stamp', |
| 'lint_result': '<(intermediate_dir)/lint_result.xml', |
| @@ -230,14 +230,17 @@ |
| ], |
| 'outputs': [ |
| '<(compile_stamp)', |
| + '<(javac_jar_path)', |
| ], |
| 'action': [ |
| 'python', '<(DEPTH)/build/android/gyp/javac.py', |
| - '--output-dir=<(classes_dir)', |
| + '--classes-dir=<(classes_dir)', |
| '--classpath=>(input_jars_paths)', |
| '--src-gendirs=>(generated_src_dirs)', |
| '--javac-includes=<(javac_includes)', |
| '--chromium-code=<(chromium_code)', |
| + '--jar-path=<(javac_jar_path)', |
| + '--jar-excluded-classes=<(jar_excluded_classes)', |
| '--stamp=<(compile_stamp)', |
| '>@(java_sources)', |
| ] |
| @@ -261,25 +264,6 @@ |
| 'includes': [ 'android/lint_action.gypi' ], |
| }, |
| { |
| - 'action_name': 'jar_<(_target_name)', |
| - 'message': 'Creating <(_target_name) jar', |
| - 'inputs': [ |
| - '<(DEPTH)/build/android/gyp/util/build_utils.py', |
| - '<(DEPTH)/build/android/gyp/util/md5_check.py', |
| - '<(DEPTH)/build/android/gyp/jar.py', |
| - '<(compile_stamp)', |
| - ], |
| - 'outputs': [ |
| - '<(javac_jar_path)', |
| - ], |
| - 'action': [ |
| - 'python', '<(DEPTH)/build/android/gyp/jar.py', |
| - '--classes-dir=<(classes_dir)', |
| - '--jar-path=<(javac_jar_path)', |
| - '--excluded-classes=<(jar_excluded_classes)', |
| - ] |
| - }, |
| - { |
| 'action_name': 'instr_jar_<(_target_name)', |
| 'message': 'Instrumenting <(_target_name) jar', |
| 'variables': { |