mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
30 lines
742 B
Plaintext
30 lines
742 B
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.
|
|
|
|
static_library("webui") {
|
|
sources = [
|
|
"proximity_auth_ui.cc",
|
|
"proximity_auth_ui.h",
|
|
"proximity_auth_webui_handler.cc",
|
|
"proximity_auth_webui_handler.h",
|
|
"reachable_phone_flow.cc",
|
|
"reachable_phone_flow.h",
|
|
"url_constants.cc",
|
|
"url_constants.h",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//base:i18n",
|
|
"//components/cryptauth",
|
|
"//components/prefs",
|
|
"//components/proximity_auth",
|
|
"//components/proximity_auth/logging",
|
|
"//components/resources",
|
|
"//content/public/browser",
|
|
"//device/bluetooth",
|
|
"//ui/resources",
|
|
]
|
|
}
|