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

Side by Side Diff: mojo/generate_mojo_shell_assets_list.gni

Issue 1492963004: GN: asset_location -> android_assets() for mandoline_apk (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@build_config_java_binary
Patch Set: Created 5 years 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 | « mandoline/app/android/BUILD.gn ('k') | mojo/runner/BUILD.gn » ('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 2015 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 # Used to generate an assets_list file. To use supply the argument 'dir', which
6 # is where the assets can be found.
7 # TODO(sky): Perhaps combine this with the copy step?
8 template("generate_mojo_shell_assets_list") {
9 action(target_name) {
10 script = "//mojo/tools/generate_mojo_shell_assets_list.py"
11 args = [
12 "--dir",
13 rebase_path(invoker.dir, root_build_dir),
14 ]
15 outputs = [
16 invoker.dir + "/assets_list",
17 ]
18 if (defined(invoker.deps)) {
19 deps = invoker.deps
20 }
21 if (defined(invoker.testonly)) {
22 testonly = invoker.testonly
23 }
24 }
25 }
OLDNEW
« no previous file with comments | « mandoline/app/android/BUILD.gn ('k') | mojo/runner/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698