Search engine setting: Make "Make default" not mouse-focusable.
[chromium-blink-merge.git] / build / uiautomator_test.gypi
blob20c96c7794f2f51b54af2c1c77751ab5a3b3b240
1 # Copyright (c) 2013 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.
5 # This file is meant to be included into a target to provide a rule
6 # to build uiautomator dexed tests jar.
8 # To use this, create a gyp target with the following form:
9 # {
10 #   'target_name': 'test_suite_name',
11 #   'type': 'none',
12 #   'includes': ['path/to/this/gypi/file'],
13 # }
17   'dependencies': [
18     '<(DEPTH)/tools/android/android_tools.gyp:android_tools',
19   ],
20   'variables': {
21     'output_dex_path': '<(PRODUCT_DIR)/lib.java/<(_target_name).dex.jar',
22   },
23   'actions': [
24     {
25       'action_name': 'dex_<(_target_name)',
26       'message': 'Dexing <(_target_name) jar',
27       'inputs': [
28         '<(DEPTH)/build/android/gyp/util/build_utils.py',
29         '<(DEPTH)/build/android/gyp/dex.py',
30         '>@(library_dexed_jars_paths)',
31       ],
32       'outputs': [
33         '<(output_dex_path)',
34       ],
35       'action': [
36         'python', '<(DEPTH)/build/android/gyp/dex.py',
37         '--dex-path=<(output_dex_path)',
38         '--android-sdk-root=<(android_sdk_root)',
40         # TODO(newt): remove this once http://crbug.com/177552 is fixed in ninja.
41         '--ignore=>!(echo \'>(_inputs)\' | md5sum)',
43         '>@(library_dexed_jars_paths)',
44       ],
45     },
46   ],