| 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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 deps = [ | 221 deps = [ |
| 222 ":browser", | 222 ":browser", |
| 223 ":browser_internal", | 223 ":browser_internal", |
| 224 "//base", | 224 "//base", |
| 225 "//base/test:test_support", | 225 "//base/test:test_support", |
| 226 "//components/prefs", | 226 "//components/prefs", |
| 227 "//components/prefs:test_support", | 227 "//components/prefs:test_support", |
| 228 "//components/proxy_config", | 228 "//components/proxy_config", |
| 229 "//components/ssl_config", | 229 "//components/ssl_config", |
| 230 "//components/variations", | 230 "//components/variations", |
| 231 "//ios/web:test_support", | 231 "//ios/web/public/test", |
| 232 "//net", | 232 "//net", |
| 233 "//net:test_support", | 233 "//net:test_support", |
| 234 "//testing/gtest", | 234 "//testing/gtest", |
| 235 "//url", | 235 "//url", |
| 236 ] | 236 ] |
| 237 } | 237 } |
| 238 | 238 |
| 239 source_set("browser_internal") { | 239 source_set("browser_internal") { |
| 240 configs += [ "//build/config/compiler:enable_arc" ] | 240 configs += [ "//build/config/compiler:enable_arc" ] |
| 241 sources = [ | 241 sources = [ |
| 242 "callback_counter.h", | 242 "callback_counter.h", |
| 243 "callback_counter.mm", | 243 "callback_counter.mm", |
| 244 ] | 244 ] |
| 245 deps = [ | 245 deps = [ |
| 246 "//base", | 246 "//base", |
| 247 ] | 247 ] |
| 248 } | 248 } |
| OLD | NEW |