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

Side by Side Diff: ios/chrome/browser/ui/sync/BUILD.gn

Issue 2589843002: Upstream Chrome on iOS source code [11/11]. (Closed)
Patch Set: Created 4 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 unified diff | Download patch
« no previous file with comments | « ios/chrome/browser/ui/static_content/BUILD.gn ('k') | ios/chrome/browser/ui/tab/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/ui/static_content/BUILD.gn ('k') | ios/chrome/browser/ui/tab/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698