| 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 bundle_data("assets") { | 5 bundle_data("assets") { |
| 6 sources = [ | 6 sources = [ |
| 7 "resources/QRScanner.xcassets/Contents.json", | 7 "resources/QRScanner.xcassets/Contents.json", |
| 8 "resources/QRScanner.xcassets/qr_scanner_torch_off.imageset/Contents.json", | 8 "resources/QRScanner.xcassets/qr_scanner_torch_off.imageset/Contents.json", |
| 9 "resources/QRScanner.xcassets/qr_scanner_torch_off.imageset/torch_off.png", | 9 "resources/QRScanner.xcassets/qr_scanner_torch_off.imageset/torch_off.png", |
| 10 "resources/QRScanner.xcassets/qr_scanner_torch_off.imageset/torch_off@2x.png
", | 10 "resources/QRScanner.xcassets/qr_scanner_torch_off.imageset/torch_off@2x.png
", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 "//ios/third_party/material_components_ios", | 45 "//ios/third_party/material_components_ios", |
| 46 "//ui/base", | 46 "//ui/base", |
| 47 ] | 47 ] |
| 48 libs = [ | 48 libs = [ |
| 49 "AVFoundation.framework", | 49 "AVFoundation.framework", |
| 50 "UIKit.framework", | 50 "UIKit.framework", |
| 51 ] | 51 ] |
| 52 } | 52 } |
| 53 | 53 |
| 54 source_set("eg_tests") { | 54 source_set("eg_tests") { |
| 55 configs += [ "//build/config/compiler:enable_arc" ] |
| 55 testonly = true | 56 testonly = true |
| 56 sources = [ | 57 sources = [ |
| 57 "qr_scanner_view_controller_egtest.mm", | 58 "qr_scanner_view_controller_egtest.mm", |
| 58 ] | 59 ] |
| 59 deps = [ | 60 deps = [ |
| 60 ":qr_scanner", | 61 ":qr_scanner", |
| 61 "//base", | 62 "//base", |
| 62 "//base/test:test_support", | 63 "//base/test:test_support", |
| 63 "//components/strings", | 64 "//components/strings", |
| 64 "//components/version_info", | 65 "//components/version_info", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 77 "//ios/third_party/earl_grey", | 78 "//ios/third_party/earl_grey", |
| 78 "//ios/web:test_support", | 79 "//ios/web:test_support", |
| 79 "//third_party/ocmock", | 80 "//third_party/ocmock", |
| 80 "//ui/base", | 81 "//ui/base", |
| 81 ] | 82 ] |
| 82 libs = [ | 83 libs = [ |
| 83 "AVFoundation.framework", | 84 "AVFoundation.framework", |
| 84 "UIKit.framework", | 85 "UIKit.framework", |
| 85 ] | 86 ] |
| 86 } | 87 } |
| OLD | NEW |