OLD | NEW |
---|---|
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 deps = [ | 8 deps = [ |
9 ":tests", | 9 ":tests", |
10 "//mojo/common", | 10 "//mojo/common", |
11 "//mojo/examples", | 11 "//mojo/examples", |
12 "//mojo/public", | 12 "//mojo/public", |
13 "//mojo/services", | 13 "//mojo/services", |
14 "//mojo/shell:mojo_shell", | 14 "//mojo/shell:mojo_shell", |
15 ] | 15 ] |
16 | 16 |
17 if (is_linux) { | 17 if (is_linux) { |
18 deps += [ | 18 deps += [ |
19 "//mojo/python", | 19 "//mojo/python", |
brettw
2014/09/16 22:58:55
Sort
tburkard
2014/09/17 12:06:45
Done.
| |
20 "//mojo/go", | |
20 ] | 21 ] |
21 } | 22 } |
22 } | 23 } |
23 | 24 |
24 group("tests") { | 25 group("tests") { |
25 deps = [ | 26 deps = [ |
26 "//mojo/application_manager:mojo_application_manager_unittests", | 27 "//mojo/application_manager:mojo_application_manager_unittests", |
27 "//mojo/apps/js/test:mojo_apps_js_unittests", | 28 "//mojo/apps/js/test:mojo_apps_js_unittests", |
28 "//mojo/common:mojo_common_unittests", | 29 "//mojo/common:mojo_common_unittests", |
29 "//mojo/public/cpp/application/tests:mojo_public_application_unittests", | 30 "//mojo/public/cpp/application/tests:mojo_public_application_unittests", |
(...skipping 24 matching lines...) Expand all Loading... | |
54 sources = [ | 55 sources = [ |
55 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", | 56 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", |
56 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java" , | 57 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java" , |
57 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", | 58 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", |
58 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn droid.java", | 59 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn droid.java", |
59 ] | 60 ] |
60 | 61 |
61 jni_package = "mojo" | 62 jni_package = "mojo" |
62 } | 63 } |
63 } | 64 } |
OLD | NEW |