Chromium Code Reviews| 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_context_java") { | |
|
Ted C
2017/03/02 16:55:48
I "think" you should be able to just have one java
qfiard
2017/03/02 20:40:28
Done.
| |
| 8 sources = [ | |
| 9 "location_settings_dialog_context.h", | |
| 10 ] | |
| 11 } | |
| 12 | |
| 13 java_cpp_enum("location_settings_dialog_outcome_java") { | |
| 14 sources = [ | |
| 15 "location_settings_dialog_outcome.h", | |
| 16 ] | |
| 17 } | |
| 18 | |
| 7 android_library("location_java") { | 19 android_library("location_java") { |
| 8 deps = [ | 20 deps = [ |
| 9 "//base:base_java", | 21 "//base:base_java", |
| 22 "//third_party/android_tools:android_support_annotations_java", | |
| 23 "//ui/android:ui_java", | |
| 10 ] | 24 ] |
| 11 java_files = | 25 java_files = |
| 12 [ "java/src/org/chromium/components/location/LocationUtils.java" ] | 26 [ "java/src/org/chromium/components/location/LocationUtils.java" ] |
| 27 srcjar_deps = [ | |
| 28 ":location_settings_dialog_context_java", | |
| 29 ":location_settings_dialog_outcome_java", | |
| 30 ] | |
| 13 } | 31 } |
| OLD | NEW |