| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 "//components/url_formatter", | 108 "//components/url_formatter", |
| 109 "//components/variations", | 109 "//components/variations", |
| 110 "//components/variations/service", | 110 "//components/variations/service", |
| 111 "//components/version_info", | 111 "//components/version_info", |
| 112 "//components/webdata_services", | 112 "//components/webdata_services", |
| 113 "//google_apis", | 113 "//google_apis", |
| 114 "//ios/chrome/app/strings", | 114 "//ios/chrome/app/strings", |
| 115 "//ios/chrome/browser/browser_state", | 115 "//ios/chrome/browser/browser_state", |
| 116 "//ios/chrome/browser/sync/glue", | 116 "//ios/chrome/browser/sync/glue", |
| 117 "//ios/chrome/common", | 117 "//ios/chrome/common", |
| 118 "//ios/components/io_thread", |
| 118 "//ios/net", | 119 "//ios/net", |
| 119 "//ios/public/provider/chrome/browser", | 120 "//ios/public/provider/chrome/browser", |
| 120 "//ios/public/provider/chrome/browser/voice", | 121 "//ios/public/provider/chrome/browser/voice", |
| 121 "//ios/web", | 122 "//ios/web", |
| 122 "//ios/web:user_agent", | 123 "//ios/web:user_agent", |
| 123 "//net", | 124 "//net", |
| 124 "//rlz/features", | 125 "//rlz/features", |
| 125 "//url", | 126 "//url", |
| 126 ] | 127 ] |
| 127 public_deps = [ | 128 public_deps = [ |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 source_set("browser_internal") { | 240 source_set("browser_internal") { |
| 240 configs += [ "//build/config/compiler:enable_arc" ] | 241 configs += [ "//build/config/compiler:enable_arc" ] |
| 241 sources = [ | 242 sources = [ |
| 242 "callback_counter.h", | 243 "callback_counter.h", |
| 243 "callback_counter.mm", | 244 "callback_counter.mm", |
| 244 ] | 245 ] |
| 245 deps = [ | 246 deps = [ |
| 246 "//base", | 247 "//base", |
| 247 ] | 248 ] |
| 248 } | 249 } |
| OLD | NEW |