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/environment:chromium", | 65 "//mojo/environment:chromium", |
| 66 "//mojo/public/cpp/bindings", |
66 "//net", | 67 "//net", |
67 "//testing/gmock", | 68 "//testing/gmock", |
68 "//testing/gtest", | 69 "//testing/gtest", |
69 "//third_party/mojo/src/mojo/edk/system", | 70 "//third_party/mojo/src/mojo/edk/system", |
70 "//third_party/mojo/src/mojo/public/cpp/bindings", | |
71 "//url", | 71 "//url", |
72 ] | 72 ] |
73 | 73 |
74 if (!is_linux_without_dbus && !is_chromeos) { | 74 if (!is_linux_without_dbus && !is_chromeos) { |
75 sources += [ "battery/battery_status_manager_linux_unittest.cc" ] | 75 sources += [ "battery/battery_status_manager_linux_unittest.cc" ] |
76 } | 76 } |
77 | 77 |
78 # HID and Serial: | 78 # HID and Serial: |
79 # Android doesn't compile. | 79 # Android doesn't compile. |
80 # Linux, requires udev. | 80 # Linux, requires udev. |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 } | 193 } |
194 | 194 |
195 android_library("bluetooth_test_java") { | 195 android_library("bluetooth_test_java") { |
196 java_files = bluetooth_java_sources_needing_jni | 196 java_files = bluetooth_java_sources_needing_jni |
197 deps = [ | 197 deps = [ |
198 "//base:base_java", | 198 "//base:base_java", |
199 "//device/bluetooth:java", | 199 "//device/bluetooth:java", |
200 ] | 200 ] |
201 } | 201 } |
202 } | 202 } |
OLD | NEW |