Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(361)

Side by Side Diff: testing/android/native_test.gyp

Issue 70123002: Android: moves native_test to use long for JNI (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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',
40 }, 41 },
41 'includes': [ '../../build/jni_generator.gypi' ], 42 'includes': [ '../../build/jni_generator.gypi' ],
42 # So generated jni headers can be found by targets that 43 # So generated jni headers can be found by targets that
43 # depend on this. 44 # depend on this.
44 'direct_dependent_settings': { 45 'direct_dependent_settings': {
45 'include_dirs': [ 46 'include_dirs': [
46 '<(SHARED_INTERMEDIATE_DIR)', 47 '<(SHARED_INTERMEDIATE_DIR)',
47 ], 48 ],
48 }, 49 },
49 }, 50 },
50 { 51 {
51 'target_name': 'native_test_util', 52 'target_name': 'native_test_util',
52 'type': 'static_library', 53 'type': 'static_library',
53 'sources': [ 54 'sources': [
54 'native_test_util.cc', 55 'native_test_util.cc',
55 'native_test_util.h', 56 'native_test_util.h',
56 ], 57 ],
57 'dependencies': [ 58 'dependencies': [
58 '../../base/base.gyp:base', 59 '../../base/base.gyp:base',
59 ], 60 ],
60 }, 61 },
61 ], 62 ],
62 }] 63 }]
63 ], 64 ],
64 } 65 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698