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/fake_native_app_metadata.h", | |
|
rohitrao (ping after 24h)
2016/11/25 00:34:38
These should move down into the "test_support" tar
sdefresne
2016/11/25 08:41:57
+1
sczs1
2016/11/26 04:10:18
Right, didn't think of that!
I've now created a n
| |
| 20 "native_app_launcher/fake_native_app_metadata.mm", | |
| 21 "native_app_launcher/fake_native_app_whitelist_manager.h", | |
| 22 "native_app_launcher/fake_native_app_whitelist_manager.mm", | |
| 19 "native_app_launcher/native_app_metadata.h", | 23 "native_app_launcher/native_app_metadata.h", |
| 20 "native_app_launcher/native_app_types.h", | 24 "native_app_launcher/native_app_types.h", |
| 21 "native_app_launcher/native_app_whitelist_manager.h", | 25 "native_app_launcher/native_app_whitelist_manager.h", |
| 22 "omaha/omaha_service_provider.h", | 26 "omaha/omaha_service_provider.h", |
| 23 "omaha/omaha_service_provider.mm", | 27 "omaha/omaha_service_provider.mm", |
| 24 "sessions/live_tab_context_provider.h", | 28 "sessions/live_tab_context_provider.h", |
| 25 "signin/chrome_identity.h", | 29 "signin/chrome_identity.h", |
| 26 "signin/chrome_identity.mm", | 30 "signin/chrome_identity.mm", |
| 27 "signin/chrome_identity_browser_opener.h", | 31 "signin/chrome_identity_browser_opener.h", |
| 28 "signin/chrome_identity_interaction_manager.h", | 32 "signin/chrome_identity_interaction_manager.h", |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 129 "//base", | 133 "//base", |
| 130 "//components/signin/ios/browser:test_support", | 134 "//components/signin/ios/browser:test_support", |
| 131 "//components/sync_sessions", | 135 "//components/sync_sessions", |
| 132 "//ios/chrome/app/theme", | 136 "//ios/chrome/app/theme", |
| 133 "//testing/gtest", | 137 "//testing/gtest", |
| 134 ] | 138 ] |
| 135 public_deps = [ | 139 public_deps = [ |
| 136 "//testing/gmock", | 140 "//testing/gmock", |
| 137 ] | 141 ] |
| 138 } | 142 } |
| OLD | NEW |