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

Side by Side Diff: sky/services/activity/BUILD.gn

Issue 1227973002: Build skyx packages by default (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: typo Created 5 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 | « sky/sdk/example/stocks/BUILD.gn ('k') | sky/services/engine/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
1 # Copyright 2015 The Chromium Authors. All rights reserved. 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 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 import("//mojo/public/tools/bindings/mojom.gni") 5 import("//mojo/public/tools/bindings/mojom.gni")
6 6
7 group("activity") { 7 group("activity") {
8 testonly = true 8 testonly = true
9 9
10 deps = [ 10 deps = [
11 ":interfaces", 11 ":interfaces",
12 ] 12 ]
13 13
14 if (is_android) { 14 if (is_android) {
15 deps += [ ":activity_lib" ] 15 deps += [ ":activity_lib" ]
16 } 16 }
17 } 17 }
18 18
19 mojom("interfaces") {
20 sources = [
21 "activity.mojom",
22 ]
23 }
24
19 if (is_android) { 25 if (is_android) {
20 import("//build/config/android/config.gni") 26 import("//build/config/android/config.gni")
21 import("//build/config/android/rules.gni") 27 import("//build/config/android/rules.gni")
22 28
23 android_library("activity_lib") { 29 android_library("activity_lib") {
24 java_files = [ "src/org/domokit/activity/ActivityImpl.java" ] 30 java_files = [ "src/org/domokit/activity/ActivityImpl.java" ]
25 31
26 deps = [ 32 deps = [
27 "//base:base_java", 33 "//base:base_java",
28 "//mojo/public/java:bindings", 34 "//mojo/public/java:bindings",
29 "//mojo/public/java:system", 35 "//mojo/public/java:system",
30 ":interfaces_java", 36 ":interfaces_java",
31 ] 37 ]
32 } 38 }
33 } 39 }
34
35 mojom("interfaces") {
36 sources = [
37 "activity.mojom",
38 ]
39 }
OLDNEW
« no previous file with comments | « sky/sdk/example/stocks/BUILD.gn ('k') | sky/services/engine/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698