| 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 generate Java source files from templates that are processed | 6 # to generate Java source files from templates that are processed |
| 7 # through the host C pre-processor. | 7 # through the host C pre-processor. |
| 8 # | 8 # |
| 9 # To use this, create a gyp target with the following form: | 9 # To use this, create a gyp target with the following form: |
| 10 # { | 10 # { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 # in template_deps variables. Any change to them will force a rebuild of | 27 # in template_deps variables. Any change to them will force a rebuild of |
| 28 # the template, and hence of any source that depends on it. | 28 # the template, and hence of any source that depends on it. |
| 29 # | 29 # |
| 30 | 30 |
| 31 { | 31 { |
| 32 # Location where all generated Java sources will be placed. | 32 # Location where all generated Java sources will be placed. |
| 33 'variables': { | 33 'variables': { |
| 34 'include_path%': '<(DEPTH)', | 34 'include_path%': '<(DEPTH)', |
| 35 'output_dir': '<(SHARED_INTERMEDIATE_DIR)/templates/<(package_name)', | 35 'output_dir': '<(SHARED_INTERMEDIATE_DIR)/templates/<(package_name)', |
| 36 }, | 36 }, |
| 37 # Ensure that the output directory is used in the class path | |
| 38 # when building targets that depend on this one. | |
| 39 'direct_dependent_settings': { | 37 'direct_dependent_settings': { |
| 40 'variables': { | 38 'variables': { |
| 39 # Ensure that the output directory is used in the class path |
| 40 # when building targets that depend on this one. |
| 41 'generated_src_dirs': [ | 41 'generated_src_dirs': [ |
| 42 '<(output_dir)/', | 42 '<(output_dir)/', |
| 43 ], | 43 ], |
| 44 # Ensure dependents are rebuilt when sources for this rule change. |
| 45 'additional_input_paths': [ |
| 46 '<@(_sources)', |
| 47 '<@(template_deps)', |
| 48 ], |
| 44 }, | 49 }, |
| 45 }, | 50 }, |
| 46 # Define a single rule that will be apply to each .template file | 51 # Define a single rule that will be apply to each .template file |
| 47 # listed in 'sources'. | 52 # listed in 'sources'. |
| 48 'rules': [ | 53 'rules': [ |
| 49 { | 54 { |
| 50 'rule_name': 'generate_java_constants', | 55 'rule_name': 'generate_java_constants', |
| 51 'extension': 'template', | 56 'extension': 'template', |
| 52 # Set template_deps as additional dependencies. | 57 # Set template_deps as additional dependencies. |
| 53 'variables': { | 58 'variables': { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 64 'action': [ | 69 'action': [ |
| 65 'python', '<(DEPTH)/build/android/gyp/gcc_preprocess.py', | 70 'python', '<(DEPTH)/build/android/gyp/gcc_preprocess.py', |
| 66 '--include-path=<(include_path)', | 71 '--include-path=<(include_path)', |
| 67 '--output=<(output_path)', | 72 '--output=<(output_path)', |
| 68 '--template=<(RULE_INPUT_PATH)', | 73 '--template=<(RULE_INPUT_PATH)', |
| 69 ], | 74 ], |
| 70 'message': 'Generating Java from cpp template <(RULE_INPUT_PATH)', | 75 'message': 'Generating Java from cpp template <(RULE_INPUT_PATH)', |
| 71 } | 76 } |
| 72 ], | 77 ], |
| 73 } | 78 } |
| OLD | NEW |