| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 import("//ios/public/provider/chrome/browser/build_config.gni") | 5 import("//ios/public/provider/chrome/browser/build_config.gni") |
| 6 | 6 |
| 7 source_set("sync") { | 7 source_set("sync") { |
| 8 configs += [ "//build/config/compiler:enable_arc" ] |
| 8 sources = [ | 9 sources = [ |
| 9 "sync_error_infobar_delegate.h", | 10 "sync_error_infobar_delegate.h", |
| 10 "sync_error_infobar_delegate.mm", | 11 "sync_error_infobar_delegate.mm", |
| 11 "sync_util.h", | 12 "sync_util.h", |
| 12 "sync_util.mm", | 13 "sync_util.mm", |
| 13 ] | 14 ] |
| 14 deps = [ | 15 deps = [ |
| 15 "//base", | 16 "//base", |
| 16 "//components/browser_sync", | 17 "//components/browser_sync", |
| 17 "//components/infobars/core", | 18 "//components/infobars/core", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 "//ios/public/provider/chrome/browser/signin:test_support", | 53 "//ios/public/provider/chrome/browser/signin:test_support", |
| 53 "//ios/testing:ios_test_support", | 54 "//ios/testing:ios_test_support", |
| 54 "//ios/third_party/earl_grey", | 55 "//ios/third_party/earl_grey", |
| 55 "//ios/web/public/test/http_server", | 56 "//ios/web/public/test/http_server", |
| 56 "//net", | 57 "//net", |
| 57 "//ui/base", | 58 "//ui/base", |
| 58 "//url", | 59 "//url", |
| 59 ] | 60 ] |
| 60 libs = [ "XCTest.framework" ] | 61 libs = [ "XCTest.framework" ] |
| 61 } | 62 } |
| OLD | NEW |