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

Unified Diff: components/autofill/core/common/BUILD.gn

Issue 365793002: Add lots of GN targets (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/autofill/core/browser/BUILD.gn ('k') | components/metrics.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/autofill/core/common/BUILD.gn
diff --git a/components/autofill/core/common/BUILD.gn b/components/autofill/core/common/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..d75af87c0af4fc6c6cf90a2bcae3e151afbf8dd9
--- /dev/null
+++ b/components/autofill/core/common/BUILD.gn
@@ -0,0 +1,55 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+static_library("common") {
+ sources = [
+ # TODO(brettw) why are these "browser" files in the "common" target?
+ "../browser/android/auxiliary_profile_loader_android.cc",
+ "../browser/android/auxiliary_profile_loader_android.h",
+ "../browser/android/auxiliary_profiles_android.cc",
+ "../browser/android/auxiliary_profiles_android.h",
+ "../browser/android/component_jni_registrar.cc",
+ "../browser/android/component_jni_registrar.h",
+ "../browser/android/personal_data_manager_android.cc",
+ "autofill_constants.cc",
+ "autofill_constants.h",
+ "autofill_data_validation.cc",
+ "autofill_data_validation.h",
+ "autofill_pref_names.cc",
+ "autofill_pref_names.h",
+ "autofill_switches.cc",
+ "autofill_switches.h",
+ "form_data.cc",
+ "form_data.h",
+ "form_data_predictions.cc",
+ "form_data_predictions.h",
+ "form_field_data.cc",
+ "form_field_data.h",
+ "form_field_data_predictions.cc",
+ "form_field_data_predictions.h",
+ "password_autofill_util.cc",
+ "password_autofill_util.h",
+ "password_form.cc",
+ "password_form.h",
+ "password_form_fill_data.cc",
+ "password_form_fill_data.h",
+ "password_generation_util.cc",
+ "password_generation_util.h",
+ "save_password_progress_logger.cc",
+ "save_password_progress_logger.h",
+ "web_element_descriptor.cc",
+ "web_element_descriptor.h",
+ ]
+
+ deps = [
+ "//base",
+ "//ui/base",
+ "//ui/gfx",
+ "//url",
+ ]
+
+ if (is_android) {
+ # deps += [ 'autofill_jni_headers' ] TODO(GYP)
+ }
+}
« no previous file with comments | « components/autofill/core/browser/BUILD.gn ('k') | components/metrics.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698