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

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

Issue 2041723006: 💻 Fix build/apk_test.gypi since webrtc still requires it. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 6 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 | « no previous file | build/apk_test.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 # This file is meant to be included into a target to process one or more 5 # This file is meant to be included into a target to process one or more
6 # Jinja templates. 6 # Jinja templates.
7 # 7 #
8 # To process a single template file, create a gyp target with the following 8 # To process a single template file, create a gyp target with the following
9 # form: 9 # form:
10 # { 10 # {
(...skipping 29 matching lines...) Expand all
40 'actions': [ 40 'actions': [
41 { 41 {
42 'action_name': '<(_target_name)_jinja_template', 42 'action_name': '<(_target_name)_jinja_template',
43 'message': 'processing jinja template', 43 'message': 'processing jinja template',
44 'variables': { 44 'variables': {
45 'jinja_output%': '', 45 'jinja_output%': '',
46 'jinja_outputs_zip%': '', 46 'jinja_outputs_zip%': '',
47 'jinja_inputs_base_dir%': '', 47 'jinja_inputs_base_dir%': '',
48 'jinja_includes%': [], 48 'jinja_includes%': [],
49 'jinja_variables%': [], 49 'jinja_variables%': [],
50 'jinja_args': [], 50 'jinja_args': ['--loader-base-dir=<(DEPTH)'],
51 }, 51 },
52 'inputs': [ 52 'inputs': [
53 '<(DEPTH)/build/android/gyp/util/build_utils.py', 53 '<(DEPTH)/build/android/gyp/util/build_utils.py',
54 '<(DEPTH)/build/android/gyp/jinja_template.py', 54 '<(DEPTH)/build/android/gyp/jinja_template.py',
55 '<@(jinja_inputs)', 55 '<@(jinja_inputs)',
56 '<@(jinja_includes)', 56 '<@(jinja_includes)',
57 ], 57 ],
58 'conditions': [ 58 'conditions': [
59 ['jinja_output != ""', { 59 ['jinja_output != ""', {
60 'outputs': [ '<(jinja_output)' ], 60 'outputs': [ '<(jinja_output)' ],
(...skipping 15 matching lines...) Expand all
76 ], 76 ],
77 'action': [ 77 'action': [
78 'python', '<(DEPTH)/build/android/gyp/jinja_template.py', 78 'python', '<(DEPTH)/build/android/gyp/jinja_template.py',
79 '--inputs', '<(jinja_inputs)', 79 '--inputs', '<(jinja_inputs)',
80 '--variables', '<(jinja_variables)', 80 '--variables', '<(jinja_variables)',
81 '<@(jinja_args)', 81 '<@(jinja_args)',
82 ], 82 ],
83 }, 83 },
84 ], 84 ],
85 } 85 }
OLDNEW
« no previous file with comments | « no previous file | build/apk_test.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698