mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
33 lines
842 B
Plaintext
33 lines
842 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("common") {
|
|
sources = [
|
|
"cloud_print_cdd_conversion.cc",
|
|
"cloud_print_cdd_conversion.h",
|
|
"print_messages.cc",
|
|
"print_messages.h",
|
|
"printer_capabilities.cc",
|
|
"printer_capabilities.h",
|
|
"printing_param_traits_macros.h",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//components/cloud_devices/common:common",
|
|
"//components/crash/core/common",
|
|
"//components/strings:components_strings_grit",
|
|
"//ipc",
|
|
"//printing",
|
|
"//printing/common:common",
|
|
"//third_party/blink/public:blink_headers",
|
|
"//ui/base",
|
|
"//ui/gfx",
|
|
"//ui/gfx/geometry",
|
|
"//ui/gfx/ipc",
|
|
"//ui/gfx/ipc/geometry",
|
|
"//ui/gfx/ipc/skia",
|
|
]
|
|
}
|