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

Side by Side Diff: components/autofill/core/common/BUILD.gn

Issue 398423007: Add initial components unit tests to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « components/autofill/core/browser/BUILD.gn ('k') | components/components_tests.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 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
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 }
OLDNEW
« no previous file with comments | « components/autofill/core/browser/BUILD.gn ('k') | components/components_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698