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

Side by Side Diff: ui/oobe/oobe_ui.gyp

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 (c) 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 {
6 'targets': [
7 {
8 # GN version: //ui/oobe_ui:resources
9 'target_name': 'oobe_ui_resources',
10 'type': 'none',
11 'variables': {
12 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/oobe',
13 },
14 'actions': [
15 {
16 'action_name': 'oobe_ui_resources',
17 'variables': {
18 'grit_grd_file': 'oobe_ui_resources.grd',
19 },
20 'includes': [ '../../build/grit_action.gypi' ],
21 },
22 ],
23 'includes': [ '../../build/grit_target.gypi' ],
24 'copies': [
25 {
26 'destination': '<(PRODUCT_DIR)',
27 'files': [
28 '<(SHARED_INTERMEDIATE_DIR)/ui/oobe/oobe_ui_resources.pak',
29 ],
30 },
31 ],
32 },
33 {
34 'variables': {
35 'declaration_file': 'declarations/oobe.json',
36 },
37 'includes': ['../../components/wug/generator/wug.gypi'],
38 },
39 {
40 # GN version: //ui/oobe_ui
41 'target_name': 'oobe_ui',
42 'type': '<(component)',
43 'dependencies': [
44 '../../components/components.gyp:wug',
45 'oobe_ui_resources',
46 'ui_oobe_declarations_oobe_json',
47 ],
48 'sources': [
49 'oobe_ui.cc',
50 'oobe_ui.h',
51 'oobe_ui_export.h',
52 ]
53 },
54 ]
55 }
OLDNEW
« ui/oobe/OWNERS ('K') | « ui/oobe/oobe_ui.cc ('k') | ui/oobe/oobe_ui_export.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698