| 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 'conditions': [ | 6 'conditions': [ |
| 7 ['OS=="android"', { | 7 ['OS=="android"', { |
| 8 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 'target_name': 'native_test_native_code', | 10 'target_name': 'native_test_native_code', |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 ], | 30 ], |
| 31 }, | 31 }, |
| 32 { | 32 { |
| 33 'target_name': 'native_test_jni_headers', | 33 'target_name': 'native_test_jni_headers', |
| 34 'type': 'none', | 34 'type': 'none', |
| 35 'sources': [ | 35 'sources': [ |
| 36 'java/src/org/chromium/native_test/ChromeNativeTestActivity.java' | 36 'java/src/org/chromium/native_test/ChromeNativeTestActivity.java' |
| 37 ], | 37 ], |
| 38 'variables': { | 38 'variables': { |
| 39 'jni_gen_package': 'testing', | 39 'jni_gen_package': 'testing', |
| 40 'jni_generator_ptr_type': 'long', | |
| 41 }, | 40 }, |
| 42 'includes': [ '../../build/jni_generator.gypi' ], | 41 'includes': [ '../../build/jni_generator.gypi' ], |
| 43 }, | 42 }, |
| 44 { | 43 { |
| 45 'target_name': 'native_test_util', | 44 'target_name': 'native_test_util', |
| 46 'type': 'static_library', | 45 'type': 'static_library', |
| 47 'sources': [ | 46 'sources': [ |
| 48 'native_test_util.cc', | 47 'native_test_util.cc', |
| 49 'native_test_util.h', | 48 'native_test_util.h', |
| 50 ], | 49 ], |
| 51 'dependencies': [ | 50 'dependencies': [ |
| 52 '../../base/base.gyp:base', | 51 '../../base/base.gyp:base', |
| 53 ], | 52 ], |
| 54 }, | 53 }, |
| 55 ], | 54 ], |
| 56 }] | 55 }] |
| 57 ], | 56 ], |
| 58 } | 57 } |
| OLD | NEW |