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 import("//mojo/public/mojo.gni") | 6 import("//mojo/public/mojo.gni") |
7 | 7 |
8 # TODO(beng): this meta target should probably move to the root dir's BUILD.gn. | 8 # TODO(beng): this meta target should probably move to the root dir's BUILD.gn. |
9 group("mojo") { | 9 group("mojo") { |
10 # Meta-target, don't link into production code. | 10 # Meta-target, don't link into production code. |
(...skipping 28 matching lines...) Expand all Loading... |
39 if (mojo_use_go) { | 39 if (mojo_use_go) { |
40 deps += [ | 40 deps += [ |
41 "//mojo/go", | 41 "//mojo/go", |
42 ] | 42 ] |
43 } | 43 } |
44 | 44 |
45 if (is_linux) { | 45 if (is_linux) { |
46 deps += [ | 46 deps += [ |
47 "//mojo/python", | 47 "//mojo/python", |
48 ] | 48 ] |
| 49 if (mojo_use_dart) { |
| 50 deps += [ |
| 51 "//mojo/dart", |
| 52 ] |
| 53 } |
49 } | 54 } |
50 } | 55 } |
51 | 56 |
52 group("tests") { | 57 group("tests") { |
53 testonly = true | 58 testonly = true |
54 deps = [ | 59 deps = [ |
55 "//mojo/application_manager:mojo_application_manager_unittests", | 60 "//mojo/application_manager:mojo_application_manager_unittests", |
56 "//mojo/apps/js/test:apps_js_unittests", | 61 "//mojo/apps/js/test:apps_js_unittests", |
57 "//mojo/bindings/js/tests:js_unittests", | 62 "//mojo/bindings/js/tests:js_unittests", |
58 "//mojo/common:mojo_common_unittests", | 63 "//mojo/common:mojo_common_unittests", |
(...skipping 29 matching lines...) Expand all Loading... |
88 sources = [ | 93 sources = [ |
89 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", | 94 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", |
90 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java"
, | 95 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java"
, |
91 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", | 96 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", |
92 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn
droid.java", | 97 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn
droid.java", |
93 ] | 98 ] |
94 | 99 |
95 jni_package = "mojo" | 100 jni_package = "mojo" |
96 } | 101 } |
97 } | 102 } |
OLD | NEW |