blob: aa0c07d2c95f835b8e6d7d68cd619eaf55016e50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 2022 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config/mac/rules.gni")
import("//build/util/branding.gni")
# Because browser and PWA share the same history swiper code.
# Add a new target so that browser and PWA can have the same DEPS.
source_set("history_swiper") {
sources = [
"chrome_render_widget_host_view_mac_history_swiper.h",
"chrome_render_widget_host_view_mac_history_swiper.mm",
]
deps = [
"//chrome/browser/ui",
"//third_party/blink/public/common:headers",
]
}
|