blob: 40c67b77d3120adcb8b5340015bf92dbd1189c7b [file] [log] [blame]
Avi Drissman8ba1bad2022-09-13 19:22:361# Copyright 2022 The Chromium Authors
Matt Jones35466e22022-05-18 13:18:012# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5static_library("browser") {
6 sources = [
Matt Jones348d9772023-04-17 14:19:087 "commerce_internals_ui.h",
8 "commerce_internals_ui.mm",
Matt Jones35466e22022-05-18 13:18:019 "commerce_tab_helper.h",
10 "commerce_tab_helper.mm",
11 "web_state_wrapper.h",
12 "web_state_wrapper.mm",
13 ]
14
15 deps = [
16 "//base",
17 "//components/commerce/core:shopping_service",
18 "//ios/web",
Matt Jones348d9772023-04-17 14:19:0819 "//ios/web/public",
Matt Jones47c6eeaf2022-05-20 14:28:5920 "//ios/web/public/js_messaging",
Matt Jones348d9772023-04-17 14:19:0821 "//ios/web/public/webui",
Matt Jones35466e22022-05-18 13:18:0122 ]
23
Matt Jones348d9772023-04-17 14:19:0824 public_deps = [ "//components/commerce/core/internals" ]
25
Matt Jones35466e22022-05-18 13:18:0126 configs += [ "//build/config/compiler:enable_arc" ]
27}