| 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 15 matching lines...) Expand all Loading... |
| 26 ], | 26 ], |
| 27 }, | 27 }, |
| 28 { | 28 { |
| 29 'target_name': 'jni_sample_header', | 29 'target_name': 'jni_sample_header', |
| 30 'type': 'none', | 30 'type': 'none', |
| 31 'sources': [ | 31 'sources': [ |
| 32 'java/src/org/chromium/example/jni_generator/SampleForTests.java', | 32 'java/src/org/chromium/example/jni_generator/SampleForTests.java', |
| 33 ], | 33 ], |
| 34 'variables': { | 34 'variables': { |
| 35 'jni_gen_package': 'example', | 35 'jni_gen_package': 'example', |
| 36 'jni_generator_ptr_type': 'long', |
| 36 }, | 37 }, |
| 37 'includes': [ '../../../build/jni_generator.gypi' ], | 38 'includes': [ '../../../build/jni_generator.gypi' ], |
| 38 }, | 39 }, |
| 39 { | 40 { |
| 40 'target_name': 'jni_sample_java', | 41 'target_name': 'jni_sample_java', |
| 41 'type': 'none', | 42 'type': 'none', |
| 42 'variables': { | 43 'variables': { |
| 43 'java_in_dir': '../../../base/android/jni_generator/java', | 44 'java_in_dir': '../../../base/android/jni_generator/java', |
| 44 }, | 45 }, |
| 45 'dependencies': [ | 46 'dependencies': [ |
| 46 '<(DEPTH)/base/base.gyp:base_java', | 47 '<(DEPTH)/base/base.gyp:base_java', |
| 47 ], | 48 ], |
| 48 'includes': [ '../../../build/java.gypi' ], | 49 'includes': [ '../../../build/java.gypi' ], |
| 49 }, | 50 }, |
| 50 { | 51 { |
| 51 'target_name': 'jni_generator_tests', | 52 'target_name': 'jni_generator_tests', |
| 52 'type': 'executable', | 53 'type': 'executable', |
| 53 'dependencies': [ | 54 'dependencies': [ |
| 54 '../../base.gyp:test_support_base', | 55 '../../base.gyp:test_support_base', |
| 55 'jni_generator_py_tests', | 56 'jni_generator_py_tests', |
| 56 'jni_sample_header', | 57 'jni_sample_header', |
| 57 'jni_sample_java', | 58 'jni_sample_java', |
| 58 ], | 59 ], |
| 59 'sources': [ | 60 'sources': [ |
| 60 'sample_for_tests.cc', | 61 'sample_for_tests.cc', |
| 61 ], | 62 ], |
| 62 }, | 63 }, |
| 63 ], | 64 ], |
| 64 } | 65 } |
| OLD | NEW |