| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'conditions': [ | 6 'conditions': [ |
| 7 ['OS=="android"', { | 7 ['OS=="android"', { |
| 8 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 'target_name': 'remoting_jni_headers', | 10 'target_name': 'remoting_jni_headers', |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 'type': 'none', | 58 'type': 'none', |
| 59 'sources': [ | 59 'sources': [ |
| 60 'android/java/AndroidManifest.xml.jinja2', | 60 'android/java/AndroidManifest.xml.jinja2', |
| 61 ], | 61 ], |
| 62 'rules': [{ | 62 'rules': [{ |
| 63 'rule_name': 'generate_manifest', | 63 'rule_name': 'generate_manifest', |
| 64 'extension': 'jinja2', | 64 'extension': 'jinja2', |
| 65 'inputs': [ | 65 'inputs': [ |
| 66 '<(remoting_localize_path)', | 66 '<(remoting_localize_path)', |
| 67 '<(branding_path)', | 67 '<(branding_path)', |
| 68 '<(RULE_INPUT_PATH)', | |
| 69 ], | 68 ], |
| 70 'outputs': [ | 69 'outputs': [ |
| 71 '<(SHARED_INTERMEDIATE_DIR)/remoting/android/<(RULE_INPUT_ROOT)', | 70 '<(SHARED_INTERMEDIATE_DIR)/remoting/android/<(RULE_INPUT_ROOT)', |
| 72 ], | 71 ], |
| 73 'action': [ | 72 'action': [ |
| 74 'python', '<(remoting_localize_path)', | 73 'python', '<(remoting_localize_path)', |
| 75 '--variables', '<(branding_path)', | 74 '--variables', '<(branding_path)', |
| 76 '--template', '<(RULE_INPUT_PATH)', | 75 '--template', '<(RULE_INPUT_PATH)', |
| 77 '--locale_output', '<@(_outputs)', | 76 '--locale_output', '<@(_outputs)', |
| 78 'en', | 77 'en', |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 'variables': { | 142 'variables': { |
| 144 'test_suite_name': 'remoting_unittests', | 143 'test_suite_name': 'remoting_unittests', |
| 145 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)remoting_
unittests<(SHARED_LIB_SUFFIX)', | 144 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)remoting_
unittests<(SHARED_LIB_SUFFIX)', |
| 146 }, | 145 }, |
| 147 'includes': [ '../build/apk_test.gypi' ], | 146 'includes': [ '../build/apk_test.gypi' ], |
| 148 }, | 147 }, |
| 149 ], | 148 ], |
| 150 }], # 'OS=="android" and gtest_target_type=="shared_library"' | 149 }], # 'OS=="android" and gtest_target_type=="shared_library"' |
| 151 ], # end of 'conditions' | 150 ], # end of 'conditions' |
| 152 } | 151 } |
| OLD | NEW |