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

Unified Diff: components/wifi_sync/BUILD.gn

Issue 709683004: components: add wifi_sync component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@submit-1-security-class
Patch Set: fix android_aosp build Created 6 years 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/wifi_sync.gypi ('k') | components/wifi_sync/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/wifi_sync/BUILD.gn
diff --git a/components/wifi_sync/BUILD.gn b/components/wifi_sync/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..12cba0db4e5c993905d4dbff23ee97f2d8db5b84
--- /dev/null
+++ b/components/wifi_sync/BUILD.gn
@@ -0,0 +1,36 @@
+# 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.
+
+source_set("wifi_sync") {
+ sources = [
+ "network_state_helper_chromeos.cc",
+ "network_state_helper_chromeos.h",
+ "wifi_credential.cc",
+ "wifi_credential.h",
+ "wifi_credential_syncable_service.cc",
+ "wifi_credential_syncable_service.h",
+ "wifi_credential_syncable_service_factory.cc",
+ "wifi_credential_syncable_service_factory.h",
+ "wifi_security_class.h",
+ "wifi_security_class_chromeos.cc",
+ ]
+
+ deps = [
+ "//base",
+ "//sync",
+ ]
+}
+
+source_set("unit_tests") {
+ testonly = true
+
+ deps = [
+ ":wifi_sync",
+ "//testing/gtest",
+ ]
+
+ sources = [
+ "wifi_security_class_chromeos_unittest.cc",
+ ]
+}
« no previous file with comments | « components/wifi_sync.gypi ('k') | components/wifi_sync/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698