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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: ui/oobe/oobe_ui.gyp
diff --git a/ui/oobe/oobe_ui.gyp b/ui/oobe/oobe_ui.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..64c604662636ab78608429af95d7640a4320da0a
--- /dev/null
+++ b/ui/oobe/oobe_ui.gyp
@@ -0,0 +1,55 @@
+# 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_ui:resources
+ 'target_name': 'oobe_ui_resources',
+ 'type': 'none',
+ 'variables': {
+ 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/oobe',
+ },
+ 'actions': [
+ {
+ 'action_name': 'oobe_ui_resources',
+ 'variables': {
+ 'grit_grd_file': 'oobe_ui_resources.grd',
+ },
+ 'includes': [ '../../build/grit_action.gypi' ],
+ },
+ ],
+ 'includes': [ '../../build/grit_target.gypi' ],
+ 'copies': [
+ {
+ 'destination': '<(PRODUCT_DIR)',
+ 'files': [
+ '<(SHARED_INTERMEDIATE_DIR)/ui/oobe/oobe_ui_resources.pak',
+ ],
+ },
+ ],
+ },
+ {
+ 'variables': {
+ 'declaration_file': 'declarations/oobe.json',
+ },
+ 'includes': ['../../components/wug/generator/wug.gypi'],
+ },
+ {
+ # GN version: //ui/oobe_ui
+ 'target_name': 'oobe_ui',
+ 'type': '<(component)',
+ 'dependencies': [
+ '../../components/components.gyp:wug',
+ 'oobe_ui_resources',
+ 'ui_oobe_declarations_oobe_json',
+ ],
+ 'sources': [
+ 'oobe_ui.cc',
+ 'oobe_ui.h',
+ 'oobe_ui_export.h',
+ ]
+ },
+ ]
+}
« 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