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

Unified Diff: ui/aura_shell/aura_shell.gyp

Issue 7890054: Adds code for a new Aura shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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/aura_shell/aura_shell.gyp
===================================================================
--- ui/aura_shell/aura_shell.gyp (revision 0)
+++ ui/aura_shell/aura_shell.gyp (revision 0)
@@ -0,0 +1,92 @@
+# Copyright (c) 2011 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.
+
+{
+ 'variables': {
+ 'chromium_code': 1,
+ },
+
+ 'targets': [
+ {
+ 'target_name': 'aura_shell',
+ 'type': '<(component)',
+ 'dependencies': [
+ '../../base/base.gyp:base',
+ '../../base/base.gyp:base_i18n',
+ '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
+ '../../build/temp_gyp/googleurl.gyp:googleurl',
+ '../../net/net.gyp:net',
+ '../../skia/skia.gyp:skia',
+ '../../third_party/icu/icu.gyp:icui18n',
+ '../../third_party/icu/icu.gyp:icuuc',
+ '../base/strings/ui_strings.gyp:ui_strings',
+ '../gfx/compositor/compositor.gyp:compositor',
+ '../ui.gyp:ui',
+ '../ui.gyp:ui_resources',
+ '../ui.gyp:ui_resources_standard',
+ '../../views/views.gyp:views',
+ ],
+ 'sources': [
+ # All .cc, .h under views, except unittests
+ 'desktop_background_view.cc',
+ 'desktop_background_view.h',
+ 'desktop_layout_manager.cc',
+ 'desktop_layout_manager.h',
+ 'launcher_view.cc',
+ 'launcher_view.h',
+ 'status_area_view.cc',
+ 'status_area_view.h',
+ ],
+ },
+ {
+ 'target_name': 'aura_shell_unittests',
+ 'type': 'executable',
+ 'dependencies': [
+ '../../base/base.gyp:base',
+ '../../base/base.gyp:test_support_base',
+ '../../build/temp_gyp/googleurl.gyp:googleurl',
+ '../../skia/skia.gyp:skia',
+ '../../testing/gtest.gyp:gtest',
+ '../../third_party/icu/icu.gyp:icui18n',
+ '../../third_party/icu/icu.gyp:icuuc',
+ '../ui.gyp:gfx_resources',
+ '../ui.gyp:ui',
+ '../ui.gyp:ui_resources',
+ '../ui.gyp:ui_resources_standard',
+ 'aura_shell',
+ ],
+ 'sources': [
+
+ '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc',
+ '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc',
+ '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standard.rc',
+ ],
+ },
+ {
+ 'target_name': 'aura_shell_exe',
+ 'type': 'executable',
+ 'dependencies': [
+ '../../base/base.gyp:base',
+ '../../base/base.gyp:base_i18n',
+ '../../chrome/chrome.gyp:packed_resources',
+ '../../skia/skia.gyp:skia',
+ '../../third_party/icu/icu.gyp:icui18n',
+ '../../third_party/icu/icu.gyp:icuuc',
+ '../../views/views.gyp:views',
+ '../aura/aura.gyp:aura',
+ '../ui.gyp:gfx_resources',
+ '../ui.gyp:ui',
+ '../ui.gyp:ui_resources',
+ '../ui.gyp:ui_resources_standard',
+ 'aura_shell',
+ ],
+ 'sources': [
+ 'aura_shell_main.cc',
+ '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc',
+ '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc',
+ '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standard.rc',
+ ],
+ },
+ ],
+}
Property changes on: ui\aura_shell\aura_shell.gyp
___________________________________________________________________
Added: svn:eol-style
+ LF

Powered by Google App Engine
This is Rietveld 408576698