| 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 "browser_constants.cc", | 10 "browser_constants.cc", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 "ui/app_rating_prompt.h", | 27 "ui/app_rating_prompt.h", |
| 28 "ui/default_ios_web_view_factory.h", | 28 "ui/default_ios_web_view_factory.h", |
| 29 "ui/default_ios_web_view_factory.mm", | 29 "ui/default_ios_web_view_factory.mm", |
| 30 "ui/infobar_view_delegate.h", | 30 "ui/infobar_view_delegate.h", |
| 31 "ui/infobar_view_protocol.h", | 31 "ui/infobar_view_protocol.h", |
| 32 "ui/text_field_styling.h", | 32 "ui/text_field_styling.h", |
| 33 "updatable_resource_provider.h", | 33 "updatable_resource_provider.h", |
| 34 "updatable_resource_provider.mm", | 34 "updatable_resource_provider.mm", |
| 35 "voice/voice_search_language.h", | 35 "voice/voice_search_language.h", |
| 36 "voice/voice_search_language.mm", | 36 "voice/voice_search_language.mm", |
| 37 "voice/voice_search_provider.h", |
| 38 "voice/voice_search_provider.mm", |
| 37 ] | 39 ] |
| 38 | 40 |
| 39 public_deps = [ | 41 public_deps = [ |
| 40 ":provider_flags", | 42 ":provider_flags", |
| 41 ] | 43 ] |
| 42 | 44 |
| 43 deps = [ | 45 deps = [ |
| 44 "//base", | 46 "//base", |
| 45 "//components/autofill/core/browser", | 47 "//components/autofill/core/browser", |
| 46 "//components/favicon_base", | 48 "//components/favicon_base", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 65 "signin/fake_chrome_identity_interaction_manager.h", | 67 "signin/fake_chrome_identity_interaction_manager.h", |
| 66 "signin/fake_chrome_identity_interaction_manager.mm", | 68 "signin/fake_chrome_identity_interaction_manager.mm", |
| 67 "signin/fake_chrome_identity_service.h", | 69 "signin/fake_chrome_identity_service.h", |
| 68 "signin/fake_chrome_identity_service.mm", | 70 "signin/fake_chrome_identity_service.mm", |
| 69 "test_chrome_browser_provider.h", | 71 "test_chrome_browser_provider.h", |
| 70 "test_chrome_browser_provider.mm", | 72 "test_chrome_browser_provider.mm", |
| 71 "test_chrome_provider_initializer.h", | 73 "test_chrome_provider_initializer.h", |
| 72 "test_chrome_provider_initializer.mm", | 74 "test_chrome_provider_initializer.mm", |
| 73 "test_updatable_resource_provider.h", | 75 "test_updatable_resource_provider.h", |
| 74 "test_updatable_resource_provider.mm", | 76 "test_updatable_resource_provider.mm", |
| 77 "voice/test_voice_search_provider.h", |
| 78 "voice/test_voice_search_provider.mm", |
| 75 ] | 79 ] |
| 76 | 80 |
| 77 deps = [ | 81 deps = [ |
| 78 ":browser", | 82 ":browser", |
| 79 "//base", | 83 "//base", |
| 80 "//components/signin/ios/browser:test_support", | 84 "//components/signin/ios/browser:test_support", |
| 81 "//testing/gmock", | 85 "//testing/gmock", |
| 82 "//testing/gtest", | 86 "//testing/gtest", |
| 83 ] | 87 ] |
| 84 } | 88 } |
| OLD | NEW |