Chromium Code Reviews| 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 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 'conditions': [ | 7 'conditions': [ |
| 8 ['component != "shared_library" and target_arch != "arm64" and target_arch != "x64" and profiling_full_stack_frames != 1', { | 8 ['component != "shared_library" and target_arch != "arm64" and target_arch != "x64" and profiling_full_stack_frames != 1', { |
| 9 # Only enable the chromium linker on regular builds, since the | 9 # Only enable the chromium linker on regular builds, since the |
| 10 # component build crashes on Android 4.4. See b/11379966 | 10 # component build crashes on Android 4.4. See b/11379966 |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 93 '<(version_py_path)', | 93 '<(version_py_path)', |
| 94 ], | 94 ], |
| 95 'outputs': [ | 95 'outputs': [ |
| 96 '<(output_path)', | 96 '<(output_path)', |
| 97 ], | 97 ], |
| 98 'action': [ | 98 'action': [ |
| 99 'python', | 99 'python', |
| 100 '<(version_py_path)', | 100 '<(version_py_path)', |
| 101 '-f', '<(version_path)', | 101 '-f', '<(version_path)', |
| 102 '-f', '<(branding_path)', | 102 '-f', '<(branding_path)', |
| 103 '-e', 'CHANNEL=str.upper("<(android_channel)")', | |
|
cjhopman
2014/10/23 18:46:41
The str.upper is processed by jinja? That's great.
cjhopman
2014/10/23 20:46:36
Right.
| |
| 103 '<(template_input_path)', | 104 '<(template_input_path)', |
| 104 '<(output_path)', | 105 '<(output_path)', |
| 105 ], | 106 ], |
| 106 }, | 107 }, |
| 107 ], | 108 ], |
| 108 }, | 109 }, |
| 109 ], | 110 ], |
| 110 } | 111 } |
| OLD | NEW |