| 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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 | 249 |
| 250 source_set("browser_internal") { | 250 source_set("browser_internal") { |
| 251 sources = [ | 251 sources = [ |
| 252 "callback_counter.h", | 252 "callback_counter.h", |
| 253 "callback_counter.mm", | 253 "callback_counter.mm", |
| 254 ] | 254 ] |
| 255 deps = [ | 255 deps = [ |
| 256 "//base", | 256 "//base", |
| 257 ] | 257 ] |
| 258 } | 258 } |
| 259 | |
| 260 # Clean Skeleton targets | |
| 261 source_set("browser_clean_skeleton") { | |
| 262 sources = [ | |
| 263 "browser_coordinator+internal.h", | |
| 264 "browser_coordinator.h", | |
| 265 "browser_coordinator.mm", | |
| 266 "url_opening.h", | |
| 267 ] | |
| 268 | |
| 269 configs += [ "//build/config/compiler:enable_arc" ] | |
| 270 | |
| 271 deps = [ | |
| 272 ":browser", | |
| 273 "//base", | |
| 274 "//ios/chrome/browser/browser_state", | |
| 275 ] | |
| 276 } | |
| OLD | NEW |