Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(425)

Unified Diff: components/webui_generator/BUILD.gn

Issue 928163002: Initial implementation of WebUI generator (WUG) toolkit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/webui_generator.gypi ('k') | components/webui_generator/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/webui_generator/BUILD.gn
diff --git a/components/webui_generator/BUILD.gn b/components/webui_generator/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..13e167fde41ffd8c581b7169d014cd7e6b8a4765
--- /dev/null
+++ b/components/webui_generator/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/webui_generator.gypi:webui_generator
+component("webui_generator") {
+ 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_generated_config") {
+ include_dirs = [ "$root_gen_dir/wug" ]
+}
« no previous file with comments | « components/webui_generator.gypi ('k') | components/webui_generator/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698