| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 "vr/vr_device_manager_unittest.cc", | 63 "vr/vr_device_manager_unittest.cc", |
| 64 ] | 64 ] |
| 65 | 65 |
| 66 deps = [ | 66 deps = [ |
| 67 "//base/test:test_support", | 67 "//base/test:test_support", |
| 68 "//device/battery", | 68 "//device/battery", |
| 69 "//device/battery:mojo_bindings", | 69 "//device/battery:mojo_bindings", |
| 70 "//device/bluetooth", | 70 "//device/bluetooth", |
| 71 "//device/bluetooth:mocks", | 71 "//device/bluetooth:mocks", |
| 72 "//device/nfc", | 72 "//device/nfc", |
| 73 "//device/power_save_blocker", | |
| 74 "//device/vr", | 73 "//device/vr", |
| 75 "//device/vr:fakes", | 74 "//device/vr:fakes", |
| 76 "//device/vr:mojo_bindings", | 75 "//device/vr:mojo_bindings", |
| 77 "//mojo/common", | 76 "//mojo/common", |
| 78 "//mojo/edk/system", | 77 "//mojo/edk/system", |
| 79 "//mojo/public/cpp/bindings", | 78 "//mojo/public/cpp/bindings", |
| 80 "//net", | 79 "//net", |
| 81 "//testing/gmock", | 80 "//testing/gmock", |
| 82 "//testing/gtest", | 81 "//testing/gtest", |
| 83 "//tools/usb_gadget", | 82 "//tools/usb_gadget", |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 } | 224 } |
| 226 | 225 |
| 227 android_library("bluetooth_test_java") { | 226 android_library("bluetooth_test_java") { |
| 228 java_files = bluetooth_java_sources_needing_jni | 227 java_files = bluetooth_java_sources_needing_jni |
| 229 deps = [ | 228 deps = [ |
| 230 "//base:base_java", | 229 "//base:base_java", |
| 231 "//device/bluetooth:java", | 230 "//device/bluetooth:java", |
| 232 ] | 231 ] |
| 233 } | 232 } |
| 234 } | 233 } |
| OLD | NEW |