OLD | NEW |
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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 if (is_android) { | 8 if (is_android) { |
9 import("//build/config/android/rules.gni") # For generate_jni(). | 9 import("//build/config/android/rules.gni") # For generate_jni(). |
10 } | 10 } |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 ] | 50 ] |
51 | 51 |
52 deps = [ | 52 deps = [ |
53 "//base/test:test_support", | 53 "//base/test:test_support", |
54 "//device/battery", | 54 "//device/battery", |
55 "//device/battery:mojo_bindings", | 55 "//device/battery:mojo_bindings", |
56 "//device/bluetooth", | 56 "//device/bluetooth", |
57 "//device/bluetooth:mocks", | 57 "//device/bluetooth:mocks", |
58 "//device/nfc", | 58 "//device/nfc", |
59 "//mojo/common", | 59 "//mojo/common", |
| 60 "//mojo/edk/system", |
60 "//mojo/environment:chromium", | 61 "//mojo/environment:chromium", |
61 "//mojo/public/cpp/bindings", | 62 "//mojo/public/cpp/bindings", |
62 "//net", | 63 "//net", |
63 "//testing/gmock", | 64 "//testing/gmock", |
64 "//testing/gtest", | 65 "//testing/gtest", |
65 "//third_party/mojo/src/mojo/edk/system", | |
66 "//tools/usb_gadget", | 66 "//tools/usb_gadget", |
67 "//url", | 67 "//url", |
68 ] | 68 ] |
69 | 69 |
70 if (!is_linux_without_dbus && !is_chromeos) { | 70 if (!is_linux_without_dbus && !is_chromeos) { |
71 sources += [ "battery/battery_status_manager_linux_unittest.cc" ] | 71 sources += [ "battery/battery_status_manager_linux_unittest.cc" ] |
72 } | 72 } |
73 | 73 |
74 # HID and Serial: | 74 # HID and Serial: |
75 # Android doesn't compile. | 75 # Android doesn't compile. |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 } | 201 } |
202 | 202 |
203 android_library("bluetooth_test_java") { | 203 android_library("bluetooth_test_java") { |
204 java_files = bluetooth_java_sources_needing_jni | 204 java_files = bluetooth_java_sources_needing_jni |
205 deps = [ | 205 deps = [ |
206 "//base:base_java", | 206 "//base:base_java", |
207 "//device/bluetooth:java", | 207 "//device/bluetooth:java", |
208 ] | 208 ] |
209 } | 209 } |
210 } | 210 } |
OLD | NEW |