| 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
", |
| 11 "resources/QRScanner.xcassets/qr_scanner_torch_off.imageset/torch_off@3x.png
", | 11 "resources/QRScanner.xcassets/qr_scanner_torch_off.imageset/torch_off@3x.png
", |
| 12 "resources/QRScanner.xcassets/qr_scanner_torch_on.imageset/Contents.json", | 12 "resources/QRScanner.xcassets/qr_scanner_torch_on.imageset/Contents.json", |
| 13 "resources/QRScanner.xcassets/qr_scanner_torch_on.imageset/torch_on.png", | 13 "resources/QRScanner.xcassets/qr_scanner_torch_on.imageset/torch_on.png", |
| 14 "resources/QRScanner.xcassets/qr_scanner_torch_on.imageset/torch_on@2x.png", | 14 "resources/QRScanner.xcassets/qr_scanner_torch_on.imageset/torch_on@2x.png", |
| 15 "resources/QRScanner.xcassets/qr_scanner_torch_on.imageset/torch_on@3x.png", | 15 "resources/QRScanner.xcassets/qr_scanner_torch_on.imageset/torch_on@3x.png", |
| 16 "resources/QRScanner.xcassets/quick_action_qr_scanner.imageset/Contents.json
", | |
| 17 "resources/QRScanner.xcassets/quick_action_qr_scanner.imageset/quick_action_
qr_scanner@2x.png", | |
| 18 "resources/QRScanner.xcassets/quick_action_qr_scanner.imageset/quick_action_
qr_scanner@3x.png", | |
| 19 ] | 16 ] |
| 20 outputs = [ | 17 outputs = [ |
| 21 "{{bundle_resources_dir}}/{{source_file_part}}", | 18 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 22 ] | 19 ] |
| 23 } | 20 } |
| 24 | 21 |
| 25 source_set("qr_scanner") { | 22 source_set("qr_scanner") { |
| 26 sources = [ | 23 sources = [ |
| 27 "camera_controller.h", | 24 "camera_controller.h", |
| 28 "camera_controller.mm", | 25 "camera_controller.mm", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 "//ios/third_party/earl_grey", | 75 "//ios/third_party/earl_grey", |
| 79 "//ios/web:test_support", | 76 "//ios/web:test_support", |
| 80 "//third_party/ocmock", | 77 "//third_party/ocmock", |
| 81 "//ui/base", | 78 "//ui/base", |
| 82 ] | 79 ] |
| 83 libs = [ | 80 libs = [ |
| 84 "AVFoundation.framework", | 81 "AVFoundation.framework", |
| 85 "UIKit.framework", | 82 "UIKit.framework", |
| 86 ] | 83 ] |
| 87 } | 84 } |
| OLD | NEW |