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

Side by Side Diff: mojo/BUILD.gn

Issue 596913002: Add mojo package manager skeleton. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 6 years, 3 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 | mojo/tools/package_manager/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 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 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 group("mojo") { 7 group("mojo") {
8 # Meta-target, don't link into production code. 8 # Meta-target, don't link into production code.
9 testonly = true 9 testonly = true
10 deps = [ 10 deps = [
11 ":tests", 11 ":tests",
12 "//mojo/apps/js:mojo_js", 12 "//mojo/apps/js:mojo_js",
13 "//mojo/common", 13 "//mojo/common",
14 "//mojo/examples", 14 "//mojo/examples",
15 "//mojo/public", 15 "//mojo/public",
16 "//mojo/services", 16 "//mojo/services",
17 "//mojo/shell:mojo_shell", 17 "//mojo/shell:mojo_shell",
18 "//mojo/tools/package_manager",
18 ] 19 ]
19 20
20 if (is_linux) { 21 if (is_linux) {
21 deps += [ 22 deps += [
22 "//mojo/python", 23 "//mojo/python",
23 ] 24 ]
24 } 25 }
25 } 26 }
26 27
27 group("tests") { 28 group("tests") {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 sources = [ 62 sources = [
62 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", 63 "android/javatests/src/org/chromium/mojo/MojoTestCase.java",
63 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java" , 64 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java" ,
64 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", 65 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java",
65 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn droid.java", 66 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn droid.java",
66 ] 67 ]
67 68
68 jni_package = "mojo" 69 jni_package = "mojo"
69 } 70 }
70 } 71 }
OLDNEW
« no previous file with comments | « no previous file | mojo/tools/package_manager/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698