| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/android/rules.gni") | 5 import("//build/config/android/rules.gni") |
| 6 | 6 |
| 7 java_cpp_enum("location_settings_dialog_enums_java") { |
| 8 sources = [ |
| 9 "location_settings_dialog_context.h", |
| 10 "location_settings_dialog_outcome.h", |
| 11 ] |
| 12 } |
| 13 |
| 7 android_library("location_java") { | 14 android_library("location_java") { |
| 8 deps = [ | 15 deps = [ |
| 9 "//base:base_java", | 16 "//base:base_java", |
| 17 "//third_party/android_tools:android_support_annotations_java", |
| 18 "//ui/android:ui_java", |
| 10 ] | 19 ] |
| 11 java_files = | 20 java_files = |
| 12 [ "java/src/org/chromium/components/location/LocationUtils.java" ] | 21 [ "java/src/org/chromium/components/location/LocationUtils.java" ] |
| 22 srcjar_deps = [ ":location_settings_dialog_enums_java" ] |
| 13 } | 23 } |
| OLD | NEW |