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

Unified Diff: ios/chrome/app/application_delegate/BUILD.gn

Issue 2443373002: Split //ios/chrome/browser in multiple targets. (Closed)
Patch Set: Rebase Created 4 years, 2 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
Index: ios/chrome/app/application_delegate/BUILD.gn
diff --git a/components/client_update_protocol/BUILD.gn b/ios/chrome/app/application_delegate/BUILD.gn
similarity index 50%
copy from components/client_update_protocol/BUILD.gn
copy to ios/chrome/app/application_delegate/BUILD.gn
index e22ee24d20ed545dd95d5243214e42ea5b9b5eb1..5e932725ca74a36780d5fff5efc8959f87871da3 100644
--- a/components/client_update_protocol/BUILD.gn
+++ b/ios/chrome/app/application_delegate/BUILD.gn
@@ -2,28 +2,28 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-static_library("client_update_protocol") {
+source_set("application_delegate") {
sources = [
- "ecdsa.cc",
- "ecdsa.h",
+ "memory_warning_helper.h",
+ "memory_warning_helper.mm",
]
-
deps = [
"//base",
- "//crypto",
+ "//ios/chrome/browser/crash_report",
+ "//ios/chrome/browser/metrics",
]
+ libs = [ "Foundation.framework" ]
}
source_set("unit_tests") {
testonly = true
sources = [
- "ecdsa_unittest.cc",
+ "memory_warning_helper_unittest.mm",
]
-
deps = [
- ":client_update_protocol",
+ ":application_delegate",
"//base",
- "//crypto",
+ "//ios/chrome/browser/metrics",
"//testing/gtest",
]
}

Powered by Google App Engine
This is Rietveld 408576698