| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 "//components/flags_ui", | 87 "//components/flags_ui", |
| 88 "//components/flags_ui:switches", | 88 "//components/flags_ui:switches", |
| 89 "//components/handoff", | 89 "//components/handoff", |
| 90 "//components/keyed_service/core", | 90 "//components/keyed_service/core", |
| 91 "//components/keyed_service/ios", | 91 "//components/keyed_service/ios", |
| 92 "//components/metrics", | 92 "//components/metrics", |
| 93 "//components/metrics_services_manager", | 93 "//components/metrics_services_manager", |
| 94 "//components/net_log", | 94 "//components/net_log", |
| 95 "//components/ntp_tiles", | 95 "//components/ntp_tiles", |
| 96 "//components/password_manager/core/common:common", | 96 "//components/password_manager/core/common:common", |
| 97 "//components/payments/core", |
| 97 "//components/pref_registry", | 98 "//components/pref_registry", |
| 98 "//components/prefs", | 99 "//components/prefs", |
| 99 "//components/proxy_config", | 100 "//components/proxy_config", |
| 100 "//components/proxy_config/ios", | 101 "//components/proxy_config/ios", |
| 101 "//components/reading_list/ios", | 102 "//components/reading_list/ios", |
| 102 "//components/search_engines", | 103 "//components/search_engines", |
| 103 "//components/security_state/core", | 104 "//components/security_state/core", |
| 104 "//components/signin/core/browser", | 105 "//components/signin/core/browser", |
| 105 "//components/ssl_config", | 106 "//components/ssl_config", |
| 106 "//components/strings", | 107 "//components/strings", |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 source_set("browser_internal") { | 245 source_set("browser_internal") { |
| 245 configs += [ "//build/config/compiler:enable_arc" ] | 246 configs += [ "//build/config/compiler:enable_arc" ] |
| 246 sources = [ | 247 sources = [ |
| 247 "callback_counter.h", | 248 "callback_counter.h", |
| 248 "callback_counter.mm", | 249 "callback_counter.mm", |
| 249 ] | 250 ] |
| 250 deps = [ | 251 deps = [ |
| 251 "//base", | 252 "//base", |
| 252 ] | 253 ] |
| 253 } | 254 } |
| OLD | NEW |