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

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: Builds with gn using is_component_build=false. 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
Index: ui/oobe/BUILD.gn
diff --git a/ui/oobe/BUILD.gn b/ui/oobe/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..50643523434d1115b9ebe4e0ca82e4d326244f18
--- /dev/null
+++ b/ui/oobe/BUILD.gn
@@ -0,0 +1,34 @@
+# 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/wug/generator/wug.gni")
+import("//tools/grit/grit_rule.gni")
+
+wug("ui_oobe_declarations_oobe_json") {
+ source = "declarations/oobe.json"
+}
+
+grit("resources") {
+ source = "oobe_ui_resources.grd"
+ outputs = [
+ "grit/oobe_ui_resources.h",
+ "grit/oobe_ui_resources_map.cc",
+ "grit/oobe_ui_resources_map.h",
+ "oobe_ui_resources.pak",
+ "oobe_ui_resources.rc",
+ ]
+}
+
+component("oobe_ui") {
+ sources = [
+ "oobe_ui.cc",
+ "oobe_ui.h",
+ "oobe_ui_export.h",
+ ]
+ deps = [
+ "//content/public/browser",
+ ":ui_oobe_declarations_oobe_json",
+ ":resources",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698