blob: 6045a6af331d0267184b379fc23d148c3dfba25b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 2019 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
source_set("share") {
sources = [
"bitmap_download_request.cc",
"bitmap_uri_request.cc",
"features.cc",
"features.h",
"qr_code_generation_request.cc",
"qr_code_generation_request.h",
]
deps = [
"//base",
"//chrome/browser/share/android:jni_headers",
"//chrome/services/qrcode_generator/public/cpp",
"//chrome/services/qrcode_generator/public/mojom",
"//skia",
]
}
|