mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
|
# Copyright 2015 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.
|
||
|
|
||
|
assert(is_chromeos, "Proximity Auth is Chrome OS only")
|
||
|
|
||
|
static_library("webui") {
|
||
|
sources = [
|
||
|
"proximity_auth_ui.cc",
|
||
|
"proximity_auth_ui.h",
|
||
|
"proximity_auth_webui_handler.cc",
|
||
|
"proximity_auth_webui_handler.h",
|
||
|
"url_constants.cc",
|
||
|
"url_constants.h",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
"//base",
|
||
|
"//base:i18n",
|
||
|
"//chromeos",
|
||
|
"//chromeos/components/proximity_auth",
|
||
|
"//chromeos/components/proximity_auth/logging",
|
||
|
"//chromeos/resources",
|
||
|
"//chromeos/services/device_sync/public/cpp",
|
||
|
"//chromeos/services/device_sync/public/mojom",
|
||
|
"//chromeos/services/multidevice_setup/public/mojom",
|
||
|
"//chromeos/services/secure_channel/public/cpp/client",
|
||
|
"//chromeos/services/secure_channel/public/mojom",
|
||
|
"//components/cryptauth",
|
||
|
"//components/cryptauth/proto",
|
||
|
"//components/cryptauth/proto:util",
|
||
|
"//components/prefs",
|
||
|
"//components/resources",
|
||
|
"//content/public/browser",
|
||
|
"//device/bluetooth",
|
||
|
"//ui/resources",
|
||
|
"//ui/webui",
|
||
|
]
|
||
|
}
|