| Index: components/wug/BUILD.gn
|
| diff --git a/components/wug/BUILD.gn b/components/wug/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5a3d51274217a9245b29ddb4542f6aebf13511e1
|
| --- /dev/null
|
| +++ b/components/wug/BUILD.gn
|
| @@ -0,0 +1,28 @@
|
| +# 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.
|
| +
|
| +# GYP version: components/wug.gypi:wug
|
| +component("wug") {
|
| + sources = [
|
| + "data_source_util.cc",
|
| + "data_source_util.h",
|
| + "export.h",
|
| + "view.cc",
|
| + "view.h",
|
| + "view_model.cc",
|
| + "view_model.h",
|
| + "web_ui_view.cc",
|
| + "web_ui_view.h",
|
| + ]
|
| +
|
| + defines = [ "WUG_IMPLEMENTATION" ]
|
| +
|
| + deps = [
|
| + "//base",
|
| + "//components/login",
|
| + "//components/resources",
|
| + "//content/public/browser",
|
| + "//ui/base",
|
| + ]
|
| +}
|
|
|