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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 ] | 56 ] |
57 | 57 |
58 deps = [ | 58 deps = [ |
59 "//base/test:test_support", | 59 "//base/test:test_support", |
60 "//device/battery", | 60 "//device/battery", |
61 "//device/battery:mojo_bindings", | 61 "//device/battery:mojo_bindings", |
62 "//device/bluetooth", | 62 "//device/bluetooth", |
63 "//device/bluetooth:mocks", | 63 "//device/bluetooth:mocks", |
64 "//device/nfc", | 64 "//device/nfc", |
65 "//mojo/common", | 65 "//mojo/common", |
| 66 "//mojo/edk/system", |
66 "//mojo/environment:chromium", | 67 "//mojo/environment:chromium", |
67 "//mojo/public/cpp/bindings", | 68 "//mojo/public/cpp/bindings", |
68 "//net", | 69 "//net", |
69 "//testing/gmock", | 70 "//testing/gmock", |
70 "//testing/gtest", | 71 "//testing/gtest", |
71 "//third_party/mojo/src/mojo/edk/system", | |
72 "//url", | 72 "//url", |
73 ] | 73 ] |
74 | 74 |
75 if (!is_linux_without_dbus && !is_chromeos) { | 75 if (!is_linux_without_dbus && !is_chromeos) { |
76 sources += [ "battery/battery_status_manager_linux_unittest.cc" ] | 76 sources += [ "battery/battery_status_manager_linux_unittest.cc" ] |
77 } | 77 } |
78 | 78 |
79 # HID and Serial: | 79 # HID and Serial: |
80 # Android doesn't compile. | 80 # Android doesn't compile. |
81 # Linux, requires udev. | 81 # Linux, requires udev. |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 } | 197 } |
198 | 198 |
199 android_library("bluetooth_test_java") { | 199 android_library("bluetooth_test_java") { |
200 java_files = bluetooth_java_sources_needing_jni | 200 java_files = bluetooth_java_sources_needing_jni |
201 deps = [ | 201 deps = [ |
202 "//base:base_java", | 202 "//base:base_java", |
203 "//device/bluetooth:java", | 203 "//device/bluetooth:java", |
204 ] | 204 ] |
205 } | 205 } |
206 } | 206 } |
OLD | NEW |