Chromium Code Reviews| Index: chrome/browser/media/router/discovery/BUILD.gn |
| diff --git a/chrome/browser/media/router/discovery/BUILD.gn b/chrome/browser/media/router/discovery/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f73865526f6a3d7ccefc050350a5ca4a4a9b9fd5 |
| --- /dev/null |
| +++ b/chrome/browser/media/router/discovery/BUILD.gn |
| @@ -0,0 +1,23 @@ |
| +# Copyright 2017 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. |
| +# |
|
imcheng
2017/03/21 23:15:16
Remove extra #
|
| + |
| +static_library("discovery") { |
| + deps = [ |
| + "//base", |
| + "//chrome/common:constants", |
| + "//content/public/browser", |
| + "//content/public/common", |
| + ] |
| + sources = [ |
| + "dial/device_description_fetcher.cc", |
| + "dial/device_description_fetcher.h ", |
| + "dial/dial_device_data.cc", |
| + "dial/dial_device_data.h", |
| + "dial/dial_registry.cc", |
| + "dial/dial_registry.h", |
| + "dial/dial_service.cc", |
| + "dial/dial_service.h", |
| + ] |
| +} |