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 'target_defaults': { |
| 7 'configurations': { |
| 8 'Release': { |
| 9 'conditions': [ |
| 10 ['OS=="android"', { |
| 11 'cflags!': ['-Os'], |
| 12 'cflags': ['-O2'], |
| 13 }], |
| 14 ], |
| 15 }, |
| 16 }, |
| 17 }, |
6 'targets': [ | 18 'targets': [ |
7 { | 19 { |
8 'target_name': 'jni_generator_py_tests', | 20 'target_name': 'jni_generator_py_tests', |
9 'type': 'none', | 21 'type': 'none', |
10 'actions': [ | 22 'actions': [ |
11 { | 23 { |
12 'action_name': 'run_jni_generator_py_tests', | 24 'action_name': 'run_jni_generator_py_tests', |
13 'inputs': [ | 25 'inputs': [ |
14 'jni_generator.py', | 26 'jni_generator.py', |
15 'jni_generator_tests.py', | 27 'jni_generator_tests.py', |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 'jni_generator_py_tests', | 67 'jni_generator_py_tests', |
56 'jni_sample_header', | 68 'jni_sample_header', |
57 'jni_sample_java', | 69 'jni_sample_java', |
58 ], | 70 ], |
59 'sources': [ | 71 'sources': [ |
60 'sample_for_tests.cc', | 72 'sample_for_tests.cc', |
61 ], | 73 ], |
62 }, | 74 }, |
63 ], | 75 ], |
64 } | 76 } |
OLD | NEW |