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("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ios/rules.gni") | 7 import("//build/config/ios/rules.gni") |
| 8 import("//rlz/features/features.gni") | 8 import("//rlz/features/features.gni") |
| 9 import("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
| 10 | 10 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 50 "ios_chrome_io_thread.mm", | 50 "ios_chrome_io_thread.mm", |
| 51 "notification_promo.cc", | 51 "notification_promo.cc", |
| 52 "notification_promo.h", | 52 "notification_promo.h", |
| 53 "open_url_util.h", | 53 "open_url_util.h", |
| 54 "open_url_util.mm", | 54 "open_url_util.mm", |
| 55 "pref_names.cc", | 55 "pref_names.cc", |
| 56 "pref_names.h", | 56 "pref_names.h", |
| 57 "procedural_block_types.h", | 57 "procedural_block_types.h", |
| 58 "root_coordinator.h", | 58 "root_coordinator.h", |
| 59 "root_coordinator.mm", | 59 "root_coordinator.mm", |
| 60 "storekit_launcher.h", | |
| 61 "tab_parenting_global_observer.cc", | 60 "tab_parenting_global_observer.cc", |
| 62 "tab_parenting_global_observer.h", | 61 "tab_parenting_global_observer.h", |
| 63 "web_data_service_factory.cc", | 62 "web_data_service_factory.cc", |
| 64 "web_data_service_factory.h", | 63 "web_data_service_factory.h", |
| 65 "xcallback_parameters.h", | 64 "xcallback_parameters.h", |
| 66 "xcallback_parameters.mm", | 65 "xcallback_parameters.mm", |
| 67 ] | 66 ] |
| 68 deps = [ | 67 deps = [ |
| 69 ":settings_resources", | 68 ":settings_resources", |
| 70 "//base", | 69 "//base", |
| (...skipping 23 matching lines...) Expand all Loading... | |
| 94 "//components/sync", | 93 "//components/sync", |
| 95 "//components/translate/core/browser", | 94 "//components/translate/core/browser", |
| 96 "//components/url_formatter", | 95 "//components/url_formatter", |
| 97 "//components/variations", | 96 "//components/variations", |
| 98 "//components/variations/service", | 97 "//components/variations/service", |
| 99 "//components/version_info", | 98 "//components/version_info", |
| 100 "//components/webdata_services", | 99 "//components/webdata_services", |
| 101 "//google_apis", | 100 "//google_apis", |
| 102 "//ios/chrome/app/strings", | 101 "//ios/chrome/app/strings", |
| 103 "//ios/chrome/browser/browser_state", | 102 "//ios/chrome/browser/browser_state", |
| 103 "//ios/chrome/browser/store_kit", | |
|
rohitrao (ping after 24h)
2017/03/07 13:38:07
Does this target actually need to depend on store_
pkl (ping after 24h if needed)
2017/03/07 21:24:46
Doesn't seem necessary. Removed. Thanks!
| |
| 104 "//ios/chrome/browser/sync/glue", | 104 "//ios/chrome/browser/sync/glue", |
| 105 "//ios/chrome/common", | 105 "//ios/chrome/common", |
| 106 "//ios/net", | 106 "//ios/net", |
| 107 "//ios/public/provider/chrome/browser", | 107 "//ios/public/provider/chrome/browser", |
| 108 "//ios/public/provider/chrome/browser/voice", | 108 "//ios/public/provider/chrome/browser/voice", |
| 109 "//ios/web", | 109 "//ios/web", |
| 110 "//ios/web:user_agent", | 110 "//ios/web:user_agent", |
| 111 "//net", | 111 "//net", |
| 112 "//rlz/features", | 112 "//rlz/features", |
| 113 "//url", | 113 "//url", |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 223 | 223 |
| 224 source_set("browser_internal") { | 224 source_set("browser_internal") { |
| 225 sources = [ | 225 sources = [ |
| 226 "callback_counter.h", | 226 "callback_counter.h", |
| 227 "callback_counter.mm", | 227 "callback_counter.mm", |
| 228 ] | 228 ] |
| 229 deps = [ | 229 deps = [ |
| 230 "//base", | 230 "//base", |
| 231 ] | 231 ] |
| 232 } | 232 } |
| OLD | NEW |