| 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",
|
| ]
|
| }
|
|
|