| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "bluetooth/test/bluetooth_test_mac.mm", | 44 "bluetooth/test/bluetooth_test_mac.mm", |
| 45 "bluetooth/test/test_bluetooth_adapter_observer.cc", | 45 "bluetooth/test/test_bluetooth_adapter_observer.cc", |
| 46 "bluetooth/test/test_bluetooth_adapter_observer.h", | 46 "bluetooth/test/test_bluetooth_adapter_observer.h", |
| 47 "nfc/nfc_chromeos_unittest.cc", | 47 "nfc/nfc_chromeos_unittest.cc", |
| 48 "nfc/nfc_ndef_record_unittest.cc", | 48 "nfc/nfc_ndef_record_unittest.cc", |
| 49 "test/run_all_unittests.cc", | 49 "test/run_all_unittests.cc", |
| 50 ] | 50 ] |
| 51 | 51 |
| 52 deps = [ | 52 deps = [ |
| 53 "//base/test:test_support", | 53 "//base/test:test_support", |
| 54 "//crypto", |
| 54 "//device/battery", | 55 "//device/battery", |
| 55 "//device/battery:mojo_bindings", | 56 "//device/battery:mojo_bindings", |
| 56 "//device/bluetooth", | 57 "//device/bluetooth", |
| 57 "//device/nfc", | 58 "//device/nfc", |
| 58 "//mojo/environment:chromium", | 59 "//mojo/environment:chromium", |
| 59 "//net", | 60 "//net", |
| 60 "//testing/gmock", | 61 "//testing/gmock", |
| 61 "//testing/gtest", | 62 "//testing/gtest", |
| 62 "//third_party/mojo/src/mojo/edk/system", | 63 "//third_party/mojo/src/mojo/edk/system", |
| 63 "//third_party/mojo/src/mojo/public/cpp/bindings", | 64 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 } | 164 } |
| 164 | 165 |
| 165 android_library("bluetooth_test_java") { | 166 android_library("bluetooth_test_java") { |
| 166 java_files = bluetooth_java_sources_needing_jni | 167 java_files = bluetooth_java_sources_needing_jni |
| 167 deps = [ | 168 deps = [ |
| 168 "//base:base_java", | 169 "//base:base_java", |
| 169 "//device/bluetooth:java", | 170 "//device/bluetooth:java", |
| 170 ] | 171 ] |
| 171 } | 172 } |
| 172 } | 173 } |
| OLD | NEW |