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

Side by Side Diff: build/uiautomator_test.gypi

Issue 2101243005: Add a snapshot of flutter/engine/src/build to our sdk (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: add README.dart Created 4 years, 5 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 | « build/tree_truth.sh ('k') | build/update-linux-sandbox.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.
4
5 # This file is meant to be included into a target to provide a rule
6 # to build uiautomator dexed tests jar.
7 #
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 # }
14 #
15
16 {
17 'dependencies': [
18 '<(DEPTH)/build/android/pylib/device/commands/commands.gyp:chromium_commands ',
19 '<(DEPTH)/tools/android/android_tools.gyp:android_tools',
20 ],
21 'variables': {
22 'output_dex_path': '<(PRODUCT_DIR)/lib.java/<(_target_name).dex.jar',
23 },
24 'actions': [
25 {
26 'action_name': 'dex_<(_target_name)',
27 'message': 'Dexing <(_target_name) jar',
28 'variables': {
29 'dex_input_paths': [
30 '>@(library_dexed_jars_paths)',
31 ],
32 'output_path': '<(output_dex_path)',
33 },
34 'includes': [ 'android/dex_action.gypi' ],
35 },
36 ],
37 }
OLDNEW
« no previous file with comments | « build/tree_truth.sh ('k') | build/update-linux-sandbox.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698