| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//build/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//ios/public/provider/chrome/browser/build_config.gni") | 6 import("//ios/public/provider/chrome/browser/build_config.gni") |
| 7 | 7 |
| 8 source_set("browser") { | 8 source_set("browser") { |
| 9 sources = [ | 9 sources = [ |
| 10 "chrome_browser_provider.h", | 10 "chrome_browser_provider.h", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 | 44 |
| 45 deps = [ | 45 deps = [ |
| 46 "//base", | 46 "//base", |
| 47 "//components/autofill/core/browser", | 47 "//components/autofill/core/browser", |
| 48 "//components/favicon_base", | 48 "//components/favicon_base", |
| 49 "//components/metrics", | 49 "//components/metrics", |
| 50 "//components/sync_sessions", | 50 "//components/sync_sessions", |
| 51 "//ios/public/provider/web", | 51 "//ios/public/provider/web", |
| 52 "//ios/web", | 52 "//ios/web", |
| 53 ] | 53 ] |
| 54 |
| 55 libs = [ |
| 56 "CoreGraphics.framework", |
| 57 "CoreLocation.framework", |
| 58 ] |
| 54 } | 59 } |
| 55 | 60 |
| 56 buildflag_header("provider_flags") { | 61 buildflag_header("provider_flags") { |
| 57 header = "provider_flags.h" | 62 header = "provider_flags.h" |
| 58 flags = [ "USE_IOS_INTERNAL_PROVIDER=$use_ios_internal_provider" ] | 63 flags = [ "USE_IOS_INTERNAL_PROVIDER=$use_ios_internal_provider" ] |
| 59 } | 64 } |
| 60 | 65 |
| 61 source_set("test_support") { | 66 source_set("test_support") { |
| 62 testonly = true | 67 testonly = true |
| 63 | 68 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 79 ] | 84 ] |
| 80 | 85 |
| 81 deps = [ | 86 deps = [ |
| 82 ":browser", | 87 ":browser", |
| 83 "//base", | 88 "//base", |
| 84 "//components/signin/ios/browser:test_support", | 89 "//components/signin/ios/browser:test_support", |
| 85 "//testing/gmock", | 90 "//testing/gmock", |
| 86 "//testing/gtest", | 91 "//testing/gtest", |
| 87 ] | 92 ] |
| 88 } | 93 } |
| OLD | NEW |