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

Side by Side Diff: build/apk_test.gypi

Issue 1071573003: [Android] Move testing/android/ to testing/android/native_test/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removing errant commit Created 5 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 | « base/BUILD.gn ('k') | chrome/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
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 # This file is meant to be included into a target to provide a rule 5 # This file is meant to be included into a target to provide a rule
6 # to build APK based test suites. 6 # to build APK based test suites.
7 # 7 #
8 # To use this, create a gyp target with the following form: 8 # To use this, create a gyp target with the following form:
9 # { 9 # {
10 # 'target_name': 'test_suite_name_apk', 10 # 'target_name': 'test_suite_name_apk',
(...skipping 13 matching lines...) Expand all
24 '<(DEPTH)/build/android/pylib/remote/device/dummy/dummy.gyp:remote_device_du mmy_apk', 24 '<(DEPTH)/build/android/pylib/remote/device/dummy/dummy.gyp:remote_device_du mmy_apk',
25 '<(DEPTH)/tools/android/android_tools.gyp:android_tools', 25 '<(DEPTH)/tools/android/android_tools.gyp:android_tools',
26 ], 26 ],
27 'conditions': [ 27 'conditions': [
28 ['OS == "android"', { 28 ['OS == "android"', {
29 'variables': { 29 'variables': {
30 # These are used to configure java_apk.gypi included below. 30 # These are used to configure java_apk.gypi included below.
31 'apk_name': '<(test_suite_name)', 31 'apk_name': '<(test_suite_name)',
32 'intermediate_dir': '<(PRODUCT_DIR)/<(test_suite_name)_apk', 32 'intermediate_dir': '<(PRODUCT_DIR)/<(test_suite_name)_apk',
33 'final_apk_path': '<(intermediate_dir)/<(test_suite_name)-debug.apk', 33 'final_apk_path': '<(intermediate_dir)/<(test_suite_name)-debug.apk',
34 'java_in_dir': '<(DEPTH)/testing/android/java', 34 'java_in_dir': '<(DEPTH)/testing/android/native_test/java',
35 'native_lib_target': 'lib<(test_suite_name)', 35 'native_lib_target': 'lib<(test_suite_name)',
36 # TODO(yfriedman, cjhopman): Support managed installs for gtests. 36 # TODO(yfriedman, cjhopman): Support managed installs for gtests.
37 'gyp_managed_install': 0, 37 'gyp_managed_install': 0,
38 }, 38 },
39 'includes': [ 'java_apk.gypi' ], 39 'includes': [ 'java_apk.gypi' ],
40 }], # 'OS == "android" 40 }], # 'OS == "android"
41 ], # conditions 41 ], # conditions
42 } 42 }
OLDNEW
« no previous file with comments | « base/BUILD.gn ('k') | chrome/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698