| OLD | NEW |
| (Empty) |
| 1 # 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 | |
| 6 component("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. | |
| 34 config("wug_generated_config") { | |
| 35 include_dirs = [ "$root_gen_dir/wug" ] | |
| 36 } | |
| OLD | NEW |