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

Unified Diff: ui/oobe/oobe.gyp

Issue 941973003: New OOBE implementation skeleton using WUG toolkit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: No explicit, gn format. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/oobe/declarations/oobe.json ('k') | ui/oobe/oobe_export.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/oobe/oobe.gyp
diff --git a/ui/oobe/oobe.gyp b/ui/oobe/oobe.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..8b98764de13ecaef707d7a07d9275c231b58eac2
--- /dev/null
+++ b/ui/oobe/oobe.gyp
@@ -0,0 +1,64 @@
+# Copyright (c) 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ # GN version: //ui/oobe:resources
+ 'target_name': 'oobe_resources',
+ 'type': 'none',
+ 'variables': {
+ 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/oobe',
+ },
+ 'actions': [
+ {
+ 'action_name': 'oobe_resources',
+ 'variables': {
+ 'grit_grd_file': 'oobe_resources.grd',
+ },
+ 'includes': [ '../../build/grit_action.gypi' ],
+ },
+ ],
+ 'includes': [ '../../build/grit_target.gypi' ],
+ 'copies': [
+ {
+ 'destination': '<(PRODUCT_DIR)',
+ 'files': [
+ '<(grit_out_dir)/oobe_resources.pak',
+ ],
+ },
+ ],
+ },
+ {
+ 'variables': {
+ 'declaration_file': 'declarations/oobe.json',
+ },
+ 'includes': ['../../components/webui_generator/generator/wug.gypi'],
+ },
+ {
+ # GN version: //ui/oobe
+ 'target_name': 'oobe',
+ 'type': '<(component)',
+ 'defines': [
+ 'OOBE_IMPLEMENTATION'
+ ],
+ 'dependencies': [
+ '<(DEPTH)/base/base.gyp:base',
+ '<(DEPTH)/content/content.gyp:content_browser',
+ '<(DEPTH)/components/components.gyp:webui_generator',
+ 'oobe_resources',
+ 'oobe_wug_generated',
+ ],
+ 'sources': [
+ '<(SHARED_INTERMEDIATE_DIR)/ui/oobe/grit/oobe_resources_map.cc',
+ 'oobe_md_ui.cc',
+ 'oobe_md_ui.h',
+ 'oobe_export.h',
+ ],
+ 'export_dependent_settings': [
+ '<(DEPTH)/content/content.gyp:content_browser',
+ ]
+ },
+ ]
+}
« 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