Chromium Code Reviews| 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", |
| 11 "chrome_browser_provider.mm", | 11 "chrome_browser_provider.mm", |
| 12 "distribution/app_distribution_provider.h", | 12 "distribution/app_distribution_provider.h", |
| 13 "distribution/app_distribution_provider.mm", | 13 "distribution/app_distribution_provider.mm", |
| 14 "geolocation_updater_provider.h", | 14 "geolocation_updater_provider.h", |
| 15 "geolocation_updater_provider.mm", | 15 "geolocation_updater_provider.mm", |
| 16 "images/branded_image_provider.h", | 16 "images/branded_image_provider.h", |
| 17 "images/branded_image_provider.mm", | 17 "images/branded_image_provider.mm", |
| 18 "images/whats_new_icon.h", | 18 "images/whats_new_icon.h", |
| 19 "native_app_launcher/native_app_metadata.h", | |
| 20 "native_app_launcher/native_app_types.h", | |
| 21 "native_app_launcher/native_app_whitelist_manager.h", | |
| 22 "omaha/omaha_service_provider.h", | 19 "omaha/omaha_service_provider.h", |
| 23 "omaha/omaha_service_provider.mm", | 20 "omaha/omaha_service_provider.mm", |
| 24 "sessions/live_tab_context_provider.h", | 21 "sessions/live_tab_context_provider.h", |
| 25 "signin/chrome_identity.h", | 22 "signin/chrome_identity.h", |
| 26 "signin/chrome_identity.mm", | 23 "signin/chrome_identity.mm", |
| 27 "signin/chrome_identity_browser_opener.h", | 24 "signin/chrome_identity_browser_opener.h", |
| 28 "signin/chrome_identity_interaction_manager.h", | 25 "signin/chrome_identity_interaction_manager.h", |
| 29 "signin/chrome_identity_interaction_manager.mm", | 26 "signin/chrome_identity_interaction_manager.mm", |
| 30 "signin/chrome_identity_service.h", | 27 "signin/chrome_identity_service.h", |
| 31 "signin/chrome_identity_service.mm", | 28 "signin/chrome_identity_service.mm", |
| (...skipping 21 matching lines...) Expand all Loading... | |
| 53 "voice/voice_search_language.mm", | 50 "voice/voice_search_language.mm", |
| 54 "voice/voice_search_prefs.cc", | 51 "voice/voice_search_prefs.cc", |
| 55 "voice/voice_search_prefs.h", | 52 "voice/voice_search_prefs.h", |
| 56 "voice/voice_search_presenter.h", | 53 "voice/voice_search_presenter.h", |
| 57 "voice/voice_search_provider.h", | 54 "voice/voice_search_provider.h", |
| 58 "voice/voice_search_provider.mm", | 55 "voice/voice_search_provider.mm", |
| 59 ] | 56 ] |
| 60 | 57 |
| 61 public_deps = [ | 58 public_deps = [ |
| 62 ":provider_flags", | 59 ":provider_flags", |
| 60 "//ios/public/provider/chrome/browser/native_app_launcher", | |
|
sczs1
2016/11/26 04:10:19
This will be moved to deps after we update downstr
sdefresne
2016/11/28 09:28:12
I'm already splitting that target with https://cod
sdefresne
2016/11/28 09:29:47
By that, I meant that you should leave those three
sczs1
2016/11/28 19:16:30
Acknowledged.
sczs1
2016/11/28 19:16:30
Sounds good! Will revert these changes.
| |
| 63 ] | 61 ] |
| 64 | 62 |
| 65 deps = [ | 63 deps = [ |
| 66 "//base", | 64 "//base", |
| 67 "//components/autofill/core/browser", | 65 "//components/autofill/core/browser", |
| 68 "//components/favicon_base", | 66 "//components/favicon_base", |
| 69 "//components/metrics", | 67 "//components/metrics", |
| 70 "//components/sync_sessions", | 68 "//components/sync_sessions", |
| 71 "//ios/web", | 69 "//ios/web", |
| 72 "//url", | 70 "//url", |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 125 "//base", | 123 "//base", |
| 126 "//components/signin/ios/browser:test_support", | 124 "//components/signin/ios/browser:test_support", |
| 127 "//components/sync_sessions", | 125 "//components/sync_sessions", |
| 128 "//ios/chrome/app/theme", | 126 "//ios/chrome/app/theme", |
| 129 "//testing/gtest", | 127 "//testing/gtest", |
| 130 ] | 128 ] |
| 131 public_deps = [ | 129 public_deps = [ |
| 132 "//testing/gmock", | 130 "//testing/gmock", |
| 133 ] | 131 ] |
| 134 } | 132 } |
| OLD | NEW |