| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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 source_set("print") { | 5 source_set("print") { |
| 6 configs += [ "//build/config/compiler:enable_arc" ] |
| 6 sources = [ | 7 sources = [ |
| 7 "print_controller.h", | 8 "print_controller.h", |
| 8 "print_controller.mm", | 9 "print_controller.mm", |
| 9 ] | 10 ] |
| 10 deps = [ | 11 deps = [ |
| 11 "//base", | 12 "//base", |
| 12 "//components/strings", | 13 "//components/strings", |
| 13 "//ios/chrome/app/strings", | 14 "//ios/chrome/app/strings", |
| 14 "//ios/chrome/browser/ui/alert_coordinator", | 15 "//ios/chrome/browser/ui/alert_coordinator", |
| 15 "//ios/chrome/browser/ui/alert_coordinator:alert_coordinator_internal", | 16 "//ios/chrome/browser/ui/alert_coordinator:alert_coordinator_internal", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 34 "//ios/third_party/earl_grey", | 35 "//ios/third_party/earl_grey", |
| 35 "//ios/web:test_support", | 36 "//ios/web:test_support", |
| 36 "//ui/base", | 37 "//ui/base", |
| 37 "//url", | 38 "//url", |
| 38 ] | 39 ] |
| 39 libs = [ | 40 libs = [ |
| 40 "UIKit.framework", | 41 "UIKit.framework", |
| 41 "XCTest.framework", | 42 "XCTest.framework", |
| 42 ] | 43 ] |
| 43 } | 44 } |
| OLD | NEW |