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 | 4 |
5 static_library("common") { | 5 static_library("common") { |
| 6 output_name = "autofill_browser_common" |
6 sources = [ | 7 sources = [ |
7 # TODO(brettw) why are these "browser" files in the "common" target? | 8 # TODO(brettw) why are these "browser" files in the "common" target? |
8 "../browser/android/auxiliary_profile_loader_android.cc", | 9 "../browser/android/auxiliary_profile_loader_android.cc", |
9 "../browser/android/auxiliary_profile_loader_android.h", | 10 "../browser/android/auxiliary_profile_loader_android.h", |
10 "../browser/android/auxiliary_profiles_android.cc", | 11 "../browser/android/auxiliary_profiles_android.cc", |
11 "../browser/android/auxiliary_profiles_android.h", | 12 "../browser/android/auxiliary_profiles_android.h", |
12 "../browser/android/component_jni_registrar.cc", | 13 "../browser/android/component_jni_registrar.cc", |
13 "../browser/android/component_jni_registrar.h", | 14 "../browser/android/component_jni_registrar.h", |
14 "../browser/android/personal_data_manager_android.cc", | 15 "../browser/android/personal_data_manager_android.cc", |
15 "autofill_constants.cc", | 16 "autofill_constants.cc", |
(...skipping 30 matching lines...) Expand all Loading... |
46 "//base", | 47 "//base", |
47 "//ui/base", | 48 "//ui/base", |
48 "//ui/gfx", | 49 "//ui/gfx", |
49 "//url", | 50 "//url", |
50 ] | 51 ] |
51 | 52 |
52 if (is_android) { | 53 if (is_android) { |
53 # deps += [ 'autofill_jni_headers' ] TODO(GYP) | 54 # deps += [ 'autofill_jni_headers' ] TODO(GYP) |
54 } | 55 } |
55 } | 56 } |
OLD | NEW |