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 |
| 30 defines = [ "OOBE_UI_IMPLEMENTATION" ] |
| 31 |
| 32 deps = [ |
| 33 "//content/public/browser", |
| 34 ":ui_oobe_declarations_oobe_json", |
| 35 ":resources", |
| 36 ] |
| 37 } |
OLD | NEW |