| # Copyright 2024 The Chromium Authors |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| source_set("instruction_view") { |
| sources = [ |
| "instruction_view.h", |
| "instruction_view.mm", |
| ] |
| deps = [ |
| ":constants", |
| "//base", |
| "//ios/chrome/common:string_util", |
| "//ios/chrome/common/ui/colors", |
| "//ios/chrome/common/ui/util", |
| "//ios/chrome/common/ui/util:dynamic_type_util", |
| ] |
| frameworks = [ "UIKit.framework" ] |
| } |
| |
| source_set("constants") { |
| sources = [ |
| "constants.h", |
| "constants.mm", |
| ] |
| frameworks = [ "UIKit.framework" ] |
| } |