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

Side by Side Diff: build/android/create_standalone_apk_action.gypi

Issue 1438853002: Remove all .gyp and .gypi files. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 1 month 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/android/chrome_with_libs.gyp ('k') | build/android/developer_recommended_flags.gypi » ('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 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 an action to provide an action that
6 # combines a directory of shared libraries and an incomplete APK into a
7 # standalone APK.
8 #
9 # To use this, create a gyp action with the following form:
10 # {
11 # 'action_name': 'some descriptive action name',
12 # 'variables': {
13 # 'inputs': [ 'input_path1', 'input_path2' ],
14 # 'input_apk_path': '<(unsigned_apk_path)',
15 # 'output_apk_path': '<(unsigned_standalone_apk_path)',
16 # 'libraries_top_dir': '<(libraries_top_dir)',
17 # },
18 # 'includes': [ 'relative/path/to/create_standalone_apk_action.gypi' ],
19 # },
20
21 {
22 'message': 'Creating standalone APK: <(output_apk_path)',
23 'variables': {
24 'inputs': [],
25 },
26 'inputs': [
27 '<(DEPTH)/build/android/gyp/util/build_utils.py',
28 '<(DEPTH)/build/android/gyp/create_standalone_apk.py',
29 '<(input_apk_path)',
30 '>@(inputs)',
31 ],
32 'outputs': [
33 '<(output_apk_path)',
34 ],
35 'action': [
36 'python', '<(DEPTH)/build/android/gyp/create_standalone_apk.py',
37 '--libraries-top-dir=<(libraries_top_dir)',
38 '--input-apk-path=<(input_apk_path)',
39 '--output-apk-path=<(output_apk_path)',
40 ],
41 }
OLDNEW
« no previous file with comments | « build/android/chrome_with_libs.gyp ('k') | build/android/developer_recommended_flags.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698