| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/vr", | 73 "//device/vr", |
| 74 "//device/vr:fakes", | 74 "//device/vr:fakes", |
| 75 "//device/vr:mojo_bindings", |
| 75 "//mojo/common", | 76 "//mojo/common", |
| 76 "//mojo/edk/system", | 77 "//mojo/edk/system", |
| 77 "//mojo/public/cpp/bindings", | 78 "//mojo/public/cpp/bindings", |
| 78 "//net", | 79 "//net", |
| 79 "//testing/gmock", | 80 "//testing/gmock", |
| 80 "//testing/gtest", | 81 "//testing/gtest", |
| 81 "//tools/usb_gadget", | 82 "//tools/usb_gadget", |
| 82 "//url", | 83 "//url", |
| 83 ] | 84 ] |
| 84 | 85 |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 } | 224 } |
| 224 | 225 |
| 225 android_library("bluetooth_test_java") { | 226 android_library("bluetooth_test_java") { |
| 226 java_files = bluetooth_java_sources_needing_jni | 227 java_files = bluetooth_java_sources_needing_jni |
| 227 deps = [ | 228 deps = [ |
| 228 "//base:base_java", | 229 "//base:base_java", |
| 229 "//device/bluetooth:java", | 230 "//device/bluetooth:java", |
| 230 ] | 231 ] |
| 231 } | 232 } |
| 232 } | 233 } |
| OLD | NEW |