| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/features.gni") | 4 import("//build/config/features.gni") |
| 5 | 5 |
| 6 if (is_android) { | 6 if (is_android) { |
| 7 import("//build/config/android/rules.gni") # For generate_jni(). | 7 import("//build/config/android/rules.gni") # For generate_jni(). |
| 8 } | 8 } |
| 9 | 9 |
| 10 config("bluetooth_config") { | 10 config("bluetooth_config") { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 "//mojo/public/cpp/bindings", | 40 "//mojo/public/cpp/bindings", |
| 41 ] | 41 ] |
| 42 } | 42 } |
| 43 | 43 |
| 44 source_set("fake_bluetooth") { | 44 source_set("fake_bluetooth") { |
| 45 sources = [ | 45 sources = [ |
| 46 "test/fake_bluetooth.cc", | 46 "test/fake_bluetooth.cc", |
| 47 "test/fake_bluetooth.h", | 47 "test/fake_bluetooth.h", |
| 48 "test/fake_central.cc", | 48 "test/fake_central.cc", |
| 49 "test/fake_central.h", | 49 "test/fake_central.h", |
| 50 "test/fake_peripheral.cc", |
| 51 "test/fake_peripheral.h", |
| 50 ] | 52 ] |
| 51 | 53 |
| 52 deps = [ | 54 deps = [ |
| 53 ":bluetooth", | 55 ":bluetooth", |
| 54 "//device/bluetooth/public/interfaces:fake_bluetooth_interfaces", | 56 "//device/bluetooth/public/interfaces:fake_bluetooth_interfaces", |
| 55 "//mojo/public/cpp/bindings", | 57 "//mojo/public/cpp/bindings", |
| 56 ] | 58 ] |
| 57 } | 59 } |
| 58 | 60 |
| 59 component("bluetooth") { | 61 component("bluetooth") { |
| (...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 } | 430 } |
| 429 | 431 |
| 430 android_library("java") { | 432 android_library("java") { |
| 431 java_files = java_sources_needing_jni | 433 java_files = java_sources_needing_jni |
| 432 deps = [ | 434 deps = [ |
| 433 "//base:base_java", | 435 "//base:base_java", |
| 434 "//components/location/android:location_java", | 436 "//components/location/android:location_java", |
| 435 ] | 437 ] |
| 436 } | 438 } |
| 437 } | 439 } |
| OLD | NEW |