| 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 18 matching lines...) Expand all Loading... |
| 29 "qr_scanner_alerts.h", | 29 "qr_scanner_alerts.h", |
| 30 "qr_scanner_alerts.mm", | 30 "qr_scanner_alerts.mm", |
| 31 "qr_scanner_transitioning_delegate.h", | 31 "qr_scanner_transitioning_delegate.h", |
| 32 "qr_scanner_transitioning_delegate.mm", | 32 "qr_scanner_transitioning_delegate.mm", |
| 33 "qr_scanner_view.h", | 33 "qr_scanner_view.h", |
| 34 "qr_scanner_view.mm", | 34 "qr_scanner_view.mm", |
| 35 "qr_scanner_view_controller.h", | 35 "qr_scanner_view_controller.h", |
| 36 "qr_scanner_view_controller.mm", | 36 "qr_scanner_view_controller.mm", |
| 37 ] | 37 ] |
| 38 deps = [ | 38 deps = [ |
| 39 ":assets", |
| 39 "//base", | 40 "//base", |
| 40 "//components/version_info", | 41 "//components/version_info", |
| 41 "//ios/chrome/app/strings", | 42 "//ios/chrome/app/strings", |
| 42 "//ios/chrome/browser", | 43 "//ios/chrome/browser", |
| 43 "//ios/chrome/browser/ui", | 44 "//ios/chrome/browser/ui", |
| 44 "//ios/chrome/browser/ui/icons", | 45 "//ios/chrome/browser/ui/icons", |
| 45 "//ios/chrome/browser/ui/qr_scanner:assets", | |
| 46 "//ios/chrome/common:ios_app_bundle_id_prefix_header", | 46 "//ios/chrome/common:ios_app_bundle_id_prefix_header", |
| 47 "//ios/third_party/material_components_ios", | 47 "//ios/third_party/material_components_ios", |
| 48 "//ui/base", | 48 "//ui/base", |
| 49 ] | 49 ] |
| 50 libs = [ | 50 libs = [ |
| 51 "AVFoundation.framework", | 51 "AVFoundation.framework", |
| 52 "UIKit.framework", | 52 "UIKit.framework", |
| 53 ] | 53 ] |
| 54 } | 54 } |
| 55 | 55 |
| 56 source_set("eg_tests") { | 56 source_set("eg_tests") { |
| 57 testonly = true | 57 testonly = true |
| 58 sources = [ | 58 sources = [ |
| 59 "qr_scanner_view_controller_egtest.mm", | 59 "qr_scanner_view_controller_egtest.mm", |
| 60 ] | 60 ] |
| 61 deps = [ | 61 deps = [ |
| 62 ":qr_scanner", |
| 62 "//base", | 63 "//base", |
| 63 "//base/test:test_support", | 64 "//base/test:test_support", |
| 64 "//components/strings", | 65 "//components/strings", |
| 65 "//components/version_info", | 66 "//components/version_info", |
| 66 "//ios/chrome/app:app_internal", | 67 "//ios/chrome/app:app_internal", |
| 67 "//ios/chrome/app/strings", | 68 "//ios/chrome/app/strings", |
| 68 "//ios/chrome/browser", | 69 "//ios/chrome/browser", |
| 69 "//ios/chrome/browser/ui:ui_internal", | 70 "//ios/chrome/browser/ui:ui_internal", |
| 70 "//ios/chrome/browser/ui/commands", | 71 "//ios/chrome/browser/ui/commands", |
| 71 "//ios/chrome/browser/ui/icons", | 72 "//ios/chrome/browser/ui/icons", |
| 72 "//ios/chrome/browser/ui/qr_scanner", | |
| 73 "//ios/chrome/browser/ui/toolbar", | 73 "//ios/chrome/browser/ui/toolbar", |
| 74 "//ios/chrome/test/app:test_support", | 74 "//ios/chrome/test/app:test_support", |
| 75 "//ios/chrome/test/base", | 75 "//ios/chrome/test/base", |
| 76 "//ios/chrome/test/earl_grey:test_support", | 76 "//ios/chrome/test/earl_grey:test_support", |
| 77 "//ios/testing/earl_grey:earl_grey_support", | 77 "//ios/testing/earl_grey:earl_grey_support", |
| 78 "//ios/third_party/earl_grey", | 78 "//ios/third_party/earl_grey", |
| 79 "//ios/web:test_support", | 79 "//ios/web:test_support", |
| 80 "//third_party/ocmock", | 80 "//third_party/ocmock", |
| 81 "//ui/base", | 81 "//ui/base", |
| 82 ] | 82 ] |
| 83 libs = [ | 83 libs = [ |
| 84 "AVFoundation.framework", | 84 "AVFoundation.framework", |
| 85 "UIKit.framework", | 85 "UIKit.framework", |
| 86 ] | 86 ] |
| 87 } | 87 } |
| OLD | NEW |