Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(333)

Side by Side Diff: device/bluetooth/BUILD.gn

Issue 2105573002: Revert of Add a LocationUtils class to give all Chromium Android code access to location helpers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 383
384 generate_jni("jni_headers") { 384 generate_jni("jni_headers") {
385 sources = java_sources_needing_jni 385 sources = java_sources_needing_jni
386 jni_package = "bluetooth" 386 jni_package = "bluetooth"
387 } 387 }
388 388
389 android_library("java") { 389 android_library("java") {
390 java_files = java_sources_needing_jni 390 java_files = java_sources_needing_jni
391 deps = [ 391 deps = [
392 "//base:base_java", 392 "//base:base_java",
393 "//components/location/android:location_java",
394 ] 393 ]
395 } 394 }
396 } 395 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698