| Index: components/wug/BUILD.gn
|
| diff --git a/components/wug/BUILD.gn b/components/wug/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b174921da3e4b7865165569e69d92a15dab7d917
|
| --- /dev/null
|
| +++ b/components/wug/BUILD.gn
|
| @@ -0,0 +1,36 @@
|
| +# 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 = [
|
| + "//components/resources",
|
| + "//ui/base",
|
| + ]
|
| +
|
| + public_deps = [
|
| + "//base",
|
| + "//components/login",
|
| + "//content/public/browser",
|
| + ]
|
| +}
|
| +
|
| +# Config for users of generated files.
|
| +config("wug_gen_config") {
|
| + include_dirs = [ "$root_gen_dir/wug" ]
|
| +}
|
|
|