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

Unified Diff: components/webui_generator.gypi

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/resources/webui_generator_resources.grdp ('k') | components/webui_generator/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/webui_generator.gypi
diff --git a/components/webui_generator.gypi b/components/webui_generator.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..32556c4f491e5e8b50841062d74ca33ae4f79630
--- /dev/null
+++ b/components/webui_generator.gypi
@@ -0,0 +1,37 @@
+# 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.
+
+{
+ 'targets': [{
+ # GN version: //components/webui_generator
+ 'target_name': 'webui_generator',
+ 'type': '<(component)',
+ 'dependencies': [
+ 'login',
+ '<(DEPTH)/base/base.gyp:base',
+ '<(DEPTH)/components/components_resources.gyp:components_resources',
+ '<(DEPTH)/content/content.gyp:content_browser',
+ '<(DEPTH)/ui/base/ui_base.gyp:ui_base',
+ ],
+ 'export_dependent_settings': [
+ 'login',
+ '<(DEPTH)/base/base.gyp:base',
+ '<(DEPTH)/content/content.gyp:content_browser',
+ ],
+ 'defines': [
+ 'WUG_IMPLEMENTATION',
+ ],
+ 'sources': [
+ 'webui_generator/data_source_util.cc',
+ 'webui_generator/data_source_util.h',
+ 'webui_generator/export.h',
+ 'webui_generator/view.cc',
+ 'webui_generator/view.h',
+ 'webui_generator/view_model.cc',
+ 'webui_generator/view_model.h',
+ 'webui_generator/web_ui_view.cc',
+ 'webui_generator/web_ui_view.h',
+ ],
+ }],
+}
« no previous file with comments | « components/resources/webui_generator_resources.grdp ('k') | components/webui_generator/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698