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

Side by Side Diff: mojo/public/sky/rules.gni

Issue 1085853002: Introduce Sky packaged apps. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Response to qsr's review Created 5 years, 8 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 | « mojo/public/dart/rules.gni ('k') | services/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 # Rules to generate packaged applications for Sky
6
7 import("//build/module_args/mojo.gni")
8 import("$mojo_sdk_root/mojo/public/dart/rules.gni")
9
10 # Use this template to generate a .mojo Sky application. One of the source
11 # files should be named main.sky; this file will be the entrypoint of the
12 # application.
13 template("sky_packaged_application") {
14 dart_packaged_application(target_name) {
15 sources = invoker.sources
16 if (defined(invoker.deps)) {
17 deps = invoker.deps
18 }
19 if (defined(invoker.uses_pub)) {
20 uses_pub = invoker.uses_pub
21 }
22 uses_sky = true
23 }
24 }
OLDNEW
« no previous file with comments | « mojo/public/dart/rules.gni ('k') | services/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698