OLD | NEW |
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 28 matching lines...) Expand all Loading... |
39 'action': [ | 39 'action': [ |
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)', | |
50 '-DANDROID_GDBSERVER=<(android_gdbserver)', | 49 '-DANDROID_GDBSERVER=<(android_gdbserver)', |
51 '-DCHROMIUM_SRC=<(ant_build_out)/../..', | 50 '-DCHROMIUM_SRC=<(ant_build_out)/../..', |
52 '-buildfile', | 51 '-buildfile', |
53 '<(DEPTH)/testing/android/native_test_apk.xml', | 52 '<(DEPTH)/testing/android/native_test_apk.xml', |
54 ] | 53 ] |
55 } | 54 } |
56 ], | 55 ], |
57 }, | 56 }, |
58 { | 57 { |
59 'target_name': 'native_test_native_code', | 58 'target_name': 'native_test_native_code', |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 'direct_dependent_settings': { | 90 'direct_dependent_settings': { |
92 'include_dirs': [ | 91 'include_dirs': [ |
93 '<(SHARED_INTERMEDIATE_DIR)', | 92 '<(SHARED_INTERMEDIATE_DIR)', |
94 ], | 93 ], |
95 }, | 94 }, |
96 }, | 95 }, |
97 ], | 96 ], |
98 }] | 97 }] |
99 ], | 98 ], |
100 } | 99 } |
OLD | NEW |