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

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

Issue 10886046: Add gdb server variable for ant (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix a typo Created 8 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « content/shell/content_shell_ant_helper.sh ('k') | 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_apk', 10 'target_name': 'native_test_apk',
(...skipping 29 matching lines...) Expand all
40 'ant', 40 'ant',
41 # TODO: All of these paths are absolute paths right now, while 41 # TODO: All of these paths are absolute paths right now, while
42 # we really should be using relative paths for anything that is 42 # we really should be using relative paths for anything that is
43 # checked in to the Chromium tree (among which the SDK). 43 # checked in to the Chromium tree (among which the SDK).
44 '-DPRODUCT_DIR=<(ant_build_out)', 44 '-DPRODUCT_DIR=<(ant_build_out)',
45 '-DANDROID_SDK=<(android_sdk)', 45 '-DANDROID_SDK=<(android_sdk)',
46 '-DANDROID_SDK_ROOT=<(android_sdk_root)', 46 '-DANDROID_SDK_ROOT=<(android_sdk_root)',
47 '-DANDROID_SDK_TOOLS=<(android_sdk_tools)', 47 '-DANDROID_SDK_TOOLS=<(android_sdk_tools)',
48 '-DANDROID_SDK_VERSION=<(android_sdk_version)', 48 '-DANDROID_SDK_VERSION=<(android_sdk_version)',
49 '-DANDROID_TOOLCHAIN=<(android_toolchain)', 49 '-DANDROID_TOOLCHAIN=<(android_toolchain)',
50 '-DANDROID_GDBSERVER=<(android_gdbserver)',
50 '-DCHROMIUM_SRC=<(ant_build_out)/../..', 51 '-DCHROMIUM_SRC=<(ant_build_out)/../..',
51 '-buildfile', 52 '-buildfile',
52 '<(DEPTH)/testing/android/native_test_apk.xml', 53 '<(DEPTH)/testing/android/native_test_apk.xml',
53 ] 54 ]
54 } 55 }
55 ], 56 ],
56 }, 57 },
57 { 58 {
58 'target_name': 'native_test_native_code', 59 'target_name': 'native_test_native_code',
59 'message': 'building native pieces of native test package', 60 'message': 'building native pieces of native test package',
(...skipping 30 matching lines...) Expand all
90 'direct_dependent_settings': { 91 'direct_dependent_settings': {
91 'include_dirs': [ 92 'include_dirs': [
92 '<(SHARED_INTERMEDIATE_DIR)', 93 '<(SHARED_INTERMEDIATE_DIR)',
93 ], 94 ],
94 }, 95 },
95 }, 96 },
96 ], 97 ],
97 }] 98 }]
98 ], 99 ],
99 } 100 }
OLDNEW
« no previous file with comments | « content/shell/content_shell_ant_helper.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698