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

Side by Side 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 unified diff | Download patch
OLDNEW
(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 import("//components/wug/generator/wug.gni")
6 import("//tools/grit/grit_rule.gni")
7
8 wug("ui_oobe_declarations_oobe_json") {
9 source = "declarations/oobe.json"
10 }
11
12 grit("resources") {
13 source = "oobe_ui_resources.grd"
14 outputs = [
15 "grit/oobe_ui_resources.h",
16 "grit/oobe_ui_resources_map.cc",
17 "grit/oobe_ui_resources_map.h",
18 "oobe_ui_resources.pak",
19 "oobe_ui_resources.rc",
20 ]
21 }
22
23 component("oobe_ui") {
24 sources = [
25 "oobe_ui.cc",
26 "oobe_ui.h",
27 "oobe_ui_export.h",
28 ]
29 deps = [
30 "//content/public/browser",
31 ":ui_oobe_declarations_oobe_json",
32 ":resources",
33 ]
34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698