OLD | NEW |
(Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("settings_clean_skeleton") { |
| 6 sources = [ |
| 7 "settings_coordinator.h", |
| 8 "settings_coordinator.mm", |
| 9 ] |
| 10 |
| 11 configs += [ "//build/config/compiler:enable_arc" ] |
| 12 |
| 13 deps = [ |
| 14 "//ios/chrome/browser/ui/settings", |
| 15 "//ios/clean/chrome/browser:browser_clean_skeleton", |
| 16 "//ios/clean/chrome/browser/ui/actions", |
| 17 "//ios/clean/chrome/browser/ui/commands:commands_clean_skeleton", |
| 18 ] |
| 19 } |
OLD | NEW |