| 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 invoke protoc in a consistent manner. This is only to be included | 6 # to invoke protoc in a consistent manner. This is only to be included |
| 7 # for Java targets. When including this file, a .jar-file will be generated. | 7 # for Java targets. When including this file, a .jar-file will be generated. |
| 8 # For other targets, see protoc.gypi. | 8 # For other targets, see protoc.gypi. |
| 9 # | 9 # |
| 10 # To use this, create a gyp target with the following form: | 10 # To use this, create a gyp target with the following form: |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 'proto_in_dir%': '.', | 43 'proto_in_dir%': '.', |
| 44 'stamp_file': '<(java_out_dir).stamp', | 44 'stamp_file': '<(java_out_dir).stamp', |
| 45 'script': '<(DEPTH)/build/protoc_java.py', | 45 'script': '<(DEPTH)/build/protoc_java.py', |
| 46 | 46 |
| 47 # The rest of the variables here are for the java.gypi include. | 47 # The rest of the variables here are for the java.gypi include. |
| 48 'java_in_dir': '<(DEPTH)/build/android/empty', | 48 'java_in_dir': '<(DEPTH)/build/android/empty', |
| 49 'generated_src_dirs': ['<(java_out_dir)'], | 49 'generated_src_dirs': ['<(java_out_dir)'], |
| 50 # Adding the |stamp_file| to |additional_input_paths| makes the actions in | 50 # Adding the |stamp_file| to |additional_input_paths| makes the actions in |
| 51 # the include of java.gypi depend on the genproto_java action. | 51 # the include of java.gypi depend on the genproto_java action. |
| 52 'additional_input_paths': ['<(stamp_file)'], | 52 'additional_input_paths': ['<(stamp_file)'], |
| 53 'run_findbugs': 0, |
| 53 }, | 54 }, |
| 54 'actions': [ | 55 'actions': [ |
| 55 { | 56 { |
| 56 'action_name': 'genproto_java', | 57 'action_name': 'genproto_java', |
| 57 'inputs': [ | 58 'inputs': [ |
| 58 '<(script)', | 59 '<(script)', |
| 59 '<(protoc)', | 60 '<(protoc)', |
| 60 '<@(_sources)', | 61 '<@(_sources)', |
| 61 ], | 62 ], |
| 62 # We do not know the names of the generated files, so we use a stamp. | 63 # We do not know the names of the generated files, so we use a stamp. |
| (...skipping 10 matching lines...) Expand all Loading... |
| 73 ], | 74 ], |
| 74 'message': 'Generating Java code from protobuf files in <(proto_in_dir)', | 75 'message': 'Generating Java code from protobuf files in <(proto_in_dir)', |
| 75 }, | 76 }, |
| 76 ], | 77 ], |
| 77 'dependencies': [ | 78 'dependencies': [ |
| 78 '<(DEPTH)/third_party/android_protobuf/android_protobuf.gyp:android_protoc#h
ost', | 79 '<(DEPTH)/third_party/android_protobuf/android_protobuf.gyp:android_protoc#h
ost', |
| 79 '<(DEPTH)/third_party/android_protobuf/android_protobuf.gyp:protobuf_nano_ja
valib', | 80 '<(DEPTH)/third_party/android_protobuf/android_protobuf.gyp:protobuf_nano_ja
valib', |
| 80 ], | 81 ], |
| 81 'includes': [ 'java.gypi' ], | 82 'includes': [ 'java.gypi' ], |
| 82 } | 83 } |
| OLD | NEW |