OLD | NEW |
(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 } |
OLD | NEW |