Chromium Code Reviews| 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 sources = [ | 6 sources = [ |
| 7 # TODO(brettw) why are these "browser" files in the "common" target? | 7 # TODO(brettw) why are these "browser" files in the "common" target? |
| 8 "../browser/android/auxiliary_profile_loader_android.cc", | 8 "../browser/android/auxiliary_profile_loader_android.cc", |
| 9 "../browser/android/auxiliary_profile_loader_android.h", | 9 "../browser/android/auxiliary_profile_loader_android.h", |
| 10 "../browser/android/auxiliary_profiles_android.cc", | 10 "../browser/android/auxiliary_profiles_android.cc", |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 46 "//base", | 46 "//base", |
| 47 "//ui/base", | 47 "//ui/base", |
| 48 "//ui/gfx", | 48 "//ui/gfx", |
| 49 "//url", | 49 "//url", |
| 50 ] | 50 ] |
| 51 | 51 |
| 52 if (is_android) { | 52 if (is_android) { |
| 53 # deps += [ 'autofill_jni_headers' ] TODO(GYP) | 53 # deps += [ 'autofill_jni_headers' ] TODO(GYP) |
| 54 } | 54 } |
| 55 } | 55 } |
| 56 | |
| 57 source_set("unit_tests") { | |
| 58 sources = [ | |
| 59 "form_data_unittest.cc", | |
| 60 "form_field_data_unittest.cc", | |
| 61 "password_form_fill_data_unittest.cc", | |
| 62 "save_password_progress_logger_unittest.cc" | |
|
DaleCurtis
2014/07/18 18:01:21
, for consistency.
| |
| 63 ] | |
| 64 | |
| 65 deps = [ | |
| 66 ":common", | |
| 67 "//testing/gmock", | |
| 68 "//testing/gtest", | |
| 69 ] | |
| 70 } | |
| OLD | NEW |