blob: 13e167fde41ffd8c581b7169d014cd7e6b8a4765 [file] [log] [blame]
dzhioevc1c2a502015-03-03 16:31:471# Copyright 2015 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5# GYP version: components/webui_generator.gypi:webui_generator
6component("webui_generator") {
7 sources = [
8 "data_source_util.cc",
9 "data_source_util.h",
10 "export.h",
11 "view.cc",
12 "view.h",
13 "view_model.cc",
14 "view_model.h",
15 "web_ui_view.cc",
16 "web_ui_view.h",
17 ]
18
19 defines = [ "WUG_IMPLEMENTATION" ]
20
21 deps = [
22 "//components/resources",
23 "//ui/base",
24 ]
25
26 public_deps = [
27 "//base",
28 "//components/login",
29 "//content/public/browser",
30 ]
31}
32
33# Config for users of generated files.
34config("wug_generated_config") {
35 include_dirs = [ "$root_gen_dir/wug" ]
36}