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