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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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/edk/system", |
61 "//mojo/environment:chromium", | |
62 "//mojo/public/cpp/bindings", | 61 "//mojo/public/cpp/bindings", |
63 "//net", | 62 "//net", |
64 "//testing/gmock", | 63 "//testing/gmock", |
65 "//testing/gtest", | 64 "//testing/gtest", |
66 "//tools/usb_gadget", | 65 "//tools/usb_gadget", |
67 "//url", | 66 "//url", |
68 ] | 67 ] |
69 | 68 |
70 if (!is_linux_without_dbus && !is_chromeos) { | 69 if (!is_linux_without_dbus && !is_chromeos) { |
71 sources += [ "battery/battery_status_manager_linux_unittest.cc" ] | 70 sources += [ "battery/battery_status_manager_linux_unittest.cc" ] |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 } | 200 } |
202 | 201 |
203 android_library("bluetooth_test_java") { | 202 android_library("bluetooth_test_java") { |
204 java_files = bluetooth_java_sources_needing_jni | 203 java_files = bluetooth_java_sources_needing_jni |
205 deps = [ | 204 deps = [ |
206 "//base:base_java", | 205 "//base:base_java", |
207 "//device/bluetooth:java", | 206 "//device/bluetooth:java", |
208 ] | 207 ] |
209 } | 208 } |
210 } | 209 } |
OLD | NEW |