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

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

Issue 1181703008: Removed webui_generator and new OOBE UI placeholder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed empty line. Created 5 years, 6 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
« no previous file with comments | « ui/oobe/declarations/oobe.json ('k') | ui/oobe/oobe_export.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:resources
9 'target_name': 'oobe_resources',
10 'type': 'none',
11 'variables': {
12 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/oobe',
13 },
14 'actions': [
15 {
16 'action_name': 'oobe_resources',
17 'variables': {
18 'grit_grd_file': 'oobe_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 '<(grit_out_dir)/oobe_resources.pak',
29 ],
30 },
31 ],
32 },
33 {
34 'variables': {
35 'declaration_file': 'declarations/oobe.json',
36 },
37 'includes': ['../../components/webui_generator/generator/wug.gypi'],
38 },
39 {
40 # GN version: //ui/oobe
41 'target_name': 'oobe',
42 'type': '<(component)',
43 'defines': [
44 'OOBE_IMPLEMENTATION'
45 ],
46 'dependencies': [
47 '<(DEPTH)/base/base.gyp:base',
48 '<(DEPTH)/content/content.gyp:content_browser',
49 '<(DEPTH)/components/components.gyp:webui_generator',
50 'oobe_resources',
51 'oobe_wug_generated',
52 ],
53 'sources': [
54 '<(SHARED_INTERMEDIATE_DIR)/ui/oobe/grit/oobe_resources_map.cc',
55 'oobe_md_ui.cc',
56 'oobe_md_ui.h',
57 'oobe_export.h',
58 ],
59 'export_dependent_settings': [
60 '<(DEPTH)/content/content.gyp:content_browser',
61 ]
62 },
63 ]
64 }
OLDNEW
« no previous file with comments | « ui/oobe/declarations/oobe.json ('k') | ui/oobe/oobe_export.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698