| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//ios/public/provider/chrome/browser/build_config.gni") | |
| 6 | |
| 7 source_set("sync") { | |
| 8 sources = [ | |
| 9 "sync_error_infobar_delegate.h", | |
| 10 "sync_error_infobar_delegate.mm", | |
| 11 "sync_util.h", | |
| 12 "sync_util.mm", | |
| 13 ] | |
| 14 deps = [ | |
| 15 "//base", | |
| 16 "//components/browser_sync", | |
| 17 "//components/infobars/core", | |
| 18 "//components/strings", | |
| 19 "//components/sync", | |
| 20 "//google_apis", | |
| 21 "//ios/chrome/app/strings", | |
| 22 "//ios/chrome/browser/browser_state", | |
| 23 "//ios/chrome/browser/sync", | |
| 24 "//ios/chrome/browser/tabs", | |
| 25 "//ios/chrome/browser/ui/commands", | |
| 26 "//ui/base", | |
| 27 "//ui/gfx", | |
| 28 ] | |
| 29 libs = [ "UIKit.framework" ] | |
| 30 } | |
| 31 | |
| 32 source_set("eg_tests") { | |
| 33 testonly = true | |
| 34 sources = [ | |
| 35 "sync_fake_server_egtest.mm", | |
| 36 ] | |
| 37 deps = [ | |
| 38 "//base", | |
| 39 "//components/bookmarks/browser", | |
| 40 "//components/browser_sync", | |
| 41 "//components/strings", | |
| 42 "//components/sync", | |
| 43 "//ios/chrome/app/strings", | |
| 44 "//ios/chrome/browser/bookmarks", | |
| 45 "//ios/chrome/browser/bookmarks:bookmarks_utils", | |
| 46 "//ios/chrome/browser/signin", | |
| 47 "//ios/chrome/browser/sync", | |
| 48 "//ios/chrome/browser/ui/settings", | |
| 49 "//ios/chrome/browser/ui/tools_menu", | |
| 50 "//ios/chrome/test/app:test_support", | |
| 51 "//ios/chrome/test/earl_grey:test_support", | |
| 52 "//ios/public/provider/chrome/browser/signin:test_support", | |
| 53 "//ios/testing:ios_test_support", | |
| 54 "//ios/third_party/earl_grey", | |
| 55 "//ios/web:test_support", | |
| 56 "//net", | |
| 57 "//ui/base", | |
| 58 "//url", | |
| 59 ] | |
| 60 libs = [ "XCTest.framework" ] | |
| 61 } | |
| OLD | NEW |