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

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

Issue 2043803003: 👔 Reland #2: Move side-loaded test data /sdcard -> /sdcard/gtestdata (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase atop https://codereview.chromium.org/2041723006 Created 4 years, 6 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
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 # GN: //testing/android:native_test_jni_headers 10 # GN: //testing/android:native_test_jni_headers
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 }, 52 },
53 { 53 {
54 # GN: //testing/android/native_test:native_test_java 54 # GN: //testing/android/native_test:native_test_java
55 'target_name': 'native_test_java', 55 'target_name': 'native_test_java',
56 'type': 'none', 56 'type': 'none',
57 'dependencies': [ 57 'dependencies': [
58 'appurify_support.gyp:appurify_support_java', 58 'appurify_support.gyp:appurify_support_java',
59 'on_device_instrumentation.gyp:reporter_java', 59 'on_device_instrumentation.gyp:reporter_java',
60 '../../base/base.gyp:base_native_libraries_gen', 60 '../../base/base.gyp:base_native_libraries_gen',
61 '../../base/base.gyp:base_java', 61 '../../base/base.gyp:base_java',
62 '../../base/base.gyp:base_java_test_support',
62 ], 63 ],
63 'variables': { 64 'variables': {
64 'chromium_code': '1', 65 'chromium_code': '1',
65 'jar_excluded_classes': [ '*/NativeLibraries.class' ], 66 'jar_excluded_classes': [ '*/NativeLibraries.class' ],
66 'java_in_dir': 'native_test/java', 67 'java_in_dir': 'native_test/java',
67 }, 68 },
68 'includes': [ '../../build/java.gypi' ], 69 'includes': [ '../../build/java.gypi' ],
69 }, 70 },
70 ], 71 ],
71 }] 72 }]
72 ], 73 ],
73 } 74 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698