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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 ], | 115 ], |
116 }, | 116 }, |
117 { | 117 { |
118 'target_name': 'base_jni_headers', | 118 'target_name': 'base_jni_headers', |
119 'type': 'none', | 119 'type': 'none', |
120 'actions': [ | 120 'actions': [ |
121 { | 121 { |
122 'action_name': 'generate_jni_headers', | 122 'action_name': 'generate_jni_headers', |
123 'inputs': [ | 123 'inputs': [ |
124 'android/jni_generator/jni_generator.py', | 124 'android/jni_generator/jni_generator.py', |
125 'android/java/org/chromium/base/BuildInfo.java', | |
126 'android/java/org/chromium/base/PathUtils.java', | 125 'android/java/org/chromium/base/PathUtils.java', |
127 'android/java/org/chromium/base/SystemMessageHandler.java', | 126 'android/java/org/chromium/base/SystemMessageHandler.java', |
128 ], | 127 ], |
129 'outputs': [ | 128 'outputs': [ |
130 '<(SHARED_INTERMEDIATE_DIR)/base/jni/build_info_jni.h', | |
131 '<(SHARED_INTERMEDIATE_DIR)/base/jni/path_utils_jni.h', | 129 '<(SHARED_INTERMEDIATE_DIR)/base/jni/path_utils_jni.h', |
132 '<(SHARED_INTERMEDIATE_DIR)/base/jni/system_message_handler_jni.h', | 130 '<(SHARED_INTERMEDIATE_DIR)/base/jni/system_message_handler_jni.h', |
133 ], | 131 ], |
134 'action': [ | 132 'action': [ |
135 'python', | 133 'python', |
136 'android/jni_generator/jni_generator.py', | 134 'android/jni_generator/jni_generator.py', |
137 '-o', | 135 '-o', |
138 '<@(_inputs)', | 136 '<@(_inputs)', |
139 '<@(_outputs)', | 137 '<@(_outputs)', |
140 ], | 138 ], |
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
658 # treated as weak imports in dependents, who still must | 656 # treated as weak imports in dependents, who still must |
659 # #include closure_blocks_leopard_compat.h to get weak imports. | 657 # #include closure_blocks_leopard_compat.h to get weak imports. |
660 'type': 'none', | 658 'type': 'none', |
661 }], | 659 }], |
662 ], | 660 ], |
663 }, | 661 }, |
664 ], | 662 ], |
665 }], | 663 }], |
666 ], | 664 ], |
667 } | 665 } |
OLD | NEW |