| 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 15 matching lines...) Expand all Loading... |
| 26 "signin/signin_resources_provider.mm", | 26 "signin/signin_resources_provider.mm", |
| 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/audio_session_controller.h", | 35 "voice/audio_session_controller.h", |
| 36 "voice/logo_animation_controller.h", |
| 36 "voice/voice_search_language.h", | 37 "voice/voice_search_language.h", |
| 37 "voice/voice_search_language.mm", | 38 "voice/voice_search_language.mm", |
| 38 "voice/voice_search_provider.h", | 39 "voice/voice_search_provider.h", |
| 39 "voice/voice_search_provider.mm", | 40 "voice/voice_search_provider.mm", |
| 40 ] | 41 ] |
| 41 | 42 |
| 42 public_deps = [ | 43 public_deps = [ |
| 43 ":provider_flags", | 44 ":provider_flags", |
| 44 ] | 45 ] |
| 45 | 46 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 ] | 81 ] |
| 81 | 82 |
| 82 deps = [ | 83 deps = [ |
| 83 ":browser", | 84 ":browser", |
| 84 "//base", | 85 "//base", |
| 85 "//components/signin/ios/browser:test_support", | 86 "//components/signin/ios/browser:test_support", |
| 86 "//testing/gmock", | 87 "//testing/gmock", |
| 87 "//testing/gtest", | 88 "//testing/gtest", |
| 88 ] | 89 ] |
| 89 } | 90 } |
| OLD | NEW |