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

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

Issue 1841863002: Update monet. (Closed) Base URL: https://github.com/domokit/monet.git@master
Patch Set: Created 4 years, 8 months 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
« no previous file with comments | « testing/android/junit/junit_test.gyp ('k') | testing/android/native_test/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'conditions': [
7 ['OS=="android"', {
8 'targets': [
9 {
10 # GN: //testing/android:native_test_native_code
11 'target_name': 'native_test_native_code',
12 'message': 'building native pieces of native test package',
13 'type': 'static_library',
14 'sources': [
15 'native_test/native_test_jni_onload.cc',
16 'native_test/native_test_launcher.cc',
17 'native_test/native_test_launcher.h',
18 ],
19 'dependencies': [
20 '../../base/base.gyp:base',
21 '../../base/base.gyp:test_support_base',
22 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp: dynamic_annotations',
23 '../gtest.gyp:gtest',
24 'native_test_jni_headers',
25 'native_test_util',
26 ],
27 },
28 {
29 # GN: //testing/android:native_test_jni_headers
30 'target_name': 'native_test_jni_headers',
31 'type': 'none',
32 'sources': [
33 'native_test/java/src/org/chromium/native_test/NativeTestActivity.ja va'
34 ],
35 'variables': {
36 'jni_gen_package': 'testing',
37 },
38 'includes': [ '../../build/jni_generator.gypi' ],
39 },
40 {
41 # GN: //testing/android:native_test_util
42 'target_name': 'native_test_util',
43 'type': 'static_library',
44 'sources': [
45 'native_test/native_test_util.cc',
46 'native_test/native_test_util.h',
47 ],
48 'dependencies': [
49 '../../base/base.gyp:base',
50 ],
51 },
52 ],
53 }]
54 ],
55 }
OLDNEW
« no previous file with comments | « testing/android/junit/junit_test.gyp ('k') | testing/android/native_test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698