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

Unified Diff: ui/oobe/BUILD.gn

Issue 941973003: New OOBE implementation skeleton using WUG toolkit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: No explicit, gn format. 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 | « tools/gritsettings/resource_ids ('k') | ui/oobe/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/oobe/BUILD.gn
diff --git a/ui/oobe/BUILD.gn b/ui/oobe/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..fb6def9e7f20227a72f5cccd2e1f47a69365617d
--- /dev/null
+++ b/ui/oobe/BUILD.gn
@@ -0,0 +1,48 @@
+# 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.
+
+import("//components/webui_generator/generator/wug.gni")
+import("//tools/grit/grit_rule.gni")
+
+wug("oobe_wug_generated") {
+ source = "declarations/oobe.json"
+}
+
+grit("resources") {
+ source = "oobe_resources.grd"
+ outputs = [
+ "grit/oobe_resources.h",
+ "grit/oobe_resources_map.cc",
+ "grit/oobe_resources_map.h",
+ "oobe_resources.pak",
+ "oobe_resources.rc",
+ ]
+}
+
+group("oobe_gen") {
+ public_deps = [
+ ":oobe_wug_generated",
+ "//components/webui_generator",
+ ]
+}
+
+component("oobe") {
+ sources = [
+ "oobe_export.h",
+ "oobe_md_ui.cc",
+ "oobe_md_ui.h",
+ ]
+
+ defines = [ "OOBE_IMPLEMENTATION" ]
+
+ deps = [
+ "//base",
+ ":resources",
+ ":oobe_gen",
+ ]
+
+ public_deps = [
+ "//content/public/browser",
+ ]
+}
« no previous file with comments | « tools/gritsettings/resource_ids ('k') | ui/oobe/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698