Chromium Code Reviews| Index: chrome/common/cloud_print/BUILD.gn |
| diff --git a/chrome/common/cloud_print/BUILD.gn b/chrome/common/cloud_print/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..4e7cba807d79ab19d24c157b484cf695442bd968 |
| --- /dev/null |
| +++ b/chrome/common/cloud_print/BUILD.gn |
| @@ -0,0 +1,25 @@ |
| +# Copyright 2017 The Chromium Authors. All rights reserved. |
|
agrieve
2017/06/15 13:52:55
Might be nice to add BUILD.gn=* to OWNERS here so
manzagop (departed)
2017/06/15 14:54:59
Done.
|
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +source_set("cloud_print") { |
| + sources = [ |
| + "cloud_print_cdd_conversion.cc", |
| + "cloud_print_cdd_conversion.h", |
| + "cloud_print_class_mac.h", |
| + "cloud_print_class_mac.mm", |
| + "cloud_print_constants.cc", |
| + "cloud_print_constants.h", |
| + "cloud_print_helpers.cc", |
| + "cloud_print_helpers.h", |
| + "cloud_print_proxy_info.cc", |
| + "cloud_print_proxy_info.h", |
| + ] |
| + deps = [ |
| + "//base", |
| + "//chrome/common:channel_info", |
| + "//components/cloud_devices/common", |
| + "//net", |
| + "//printing", |
| + ] |
| +} |