Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | |
|
joth
2012/02/14 00:46:49
2012
bulach
2012/02/14 02:12:32
Done.
| |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 { | |
| 5 'targets': [ | |
| 6 { | |
| 7 'target_name': 'jni_generator_py_tests', | |
| 8 'type': 'none', | |
| 9 'actions': [ | |
| 10 { | |
| 11 'action_name': 'run_jni_generator_py_tests', | |
| 12 'inputs': [ | |
| 13 'jni_generator.py', | |
| 14 'jni_generator_tests.py', | |
| 15 'SampleForTests.java', | |
| 16 'golden_sample_for_tests_jni.h', | |
| 17 ], | |
| 18 'outputs': [ | |
| 19 '', | |
| 20 ], | |
| 21 'action': [ | |
| 22 'python', './jni_generator_tests.py', | |
| 23 ], | |
| 24 }, | |
| 25 ], | |
| 26 }, | |
| 27 { | |
| 28 'target_name': 'jni_sample_header', | |
| 29 'type': 'none', | |
| 30 'actions': [ | |
| 31 { | |
| 32 'action_name': 'generate_jni_sample_header', | |
| 33 'inputs': [ | |
| 34 'jni_generator.py', | |
| 35 'SampleForTests.java', | |
| 36 ], | |
| 37 'outputs': [ | |
| 38 '<(SHARED_INTERMEDIATE_DIR)/base/jni/sample_for_tests_jni.h', | |
| 39 ], | |
| 40 'action': [ | |
| 41 'python', | |
| 42 'jni_generator.py', | |
| 43 '-o', | |
| 44 '<@(_inputs)', | |
| 45 '<@(_outputs)', | |
| 46 ], | |
| 47 }, | |
| 48 ], | |
| 49 }, | |
| 50 { | |
| 51 'target_name': 'jni_generator_tests', | |
| 52 'type': 'executable', | |
| 53 'dependencies': [ | |
| 54 '../../base.gyp:test_support_base', | |
| 55 'jni_generator_py_tests', | |
| 56 'jni_sample_header', | |
| 57 ], | |
| 58 'include_dirs': [ | |
| 59 '<(SHARED_INTERMEDIATE_DIR)/base', | |
| 60 ], | |
| 61 'sources': [ | |
| 62 'sample_for_tests.cc', | |
| 63 ], | |
| 64 }, | |
| 65 ], | |
| 66 } | |
| 67 | |
| 68 # Local Variables: | |
| 69 # tab-width:2 | |
| 70 # indent-tabs-mode:nil | |
| 71 # End: | |
| 72 # vim: set expandtab tabstop=2 shiftwidth=2: | |
|
joth
2012/02/14 00:46:49
this doesn't look a normal footer?
bulach
2012/02/14 02:12:32
Done.
| |
| OLD | NEW |