| 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'jni_generator_py_tests', | 8 'target_name': 'jni_generator_py_tests', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'actions': [ | 10 'actions': [ |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 }, | 49 }, |
| 50 { | 50 { |
| 51 'target_name': 'jni_generator_tests', | 51 'target_name': 'jni_generator_tests', |
| 52 'type': 'executable', | 52 'type': 'executable', |
| 53 'dependencies': [ | 53 'dependencies': [ |
| 54 '../../base.gyp:test_support_base', | 54 '../../base.gyp:test_support_base', |
| 55 'jni_generator_py_tests', | 55 'jni_generator_py_tests', |
| 56 'jni_sample_header', | 56 'jni_sample_header', |
| 57 'jni_sample_java', | 57 'jni_sample_java', |
| 58 ], | 58 ], |
| 59 'include_dirs': [ | |
| 60 '<(SHARED_INTERMEDIATE_DIR)/example', | |
| 61 ], | |
| 62 'sources': [ | 59 'sources': [ |
| 63 'sample_for_tests.cc', | 60 'sample_for_tests.cc', |
| 64 ], | 61 ], |
| 65 }, | 62 }, |
| 66 ], | 63 ], |
| 67 } | 64 } |
| OLD | NEW |