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

Unified Diff: ui/app_list/app_list.gyp

Issue 281383012: Add app_list_demo, a standalone executable for testing the app list UI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add comment, resolve namespace Created 6 years, 7 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 | « no previous file | ui/app_list/views/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/app_list/app_list.gyp
diff --git a/ui/app_list/app_list.gyp b/ui/app_list/app_list.gyp
index f95ab5d1eff9392d26f240310bab5e9811a5d477..13fd5d75a92e04ec93851135a9b0daf738e0d4d4 100644
--- a/ui/app_list/app_list.gyp
+++ b/ui/app_list/app_list.gyp
@@ -281,4 +281,44 @@
'msvs_disabled_warnings': [ 4267, ],
},
],
+ 'conditions': [
+ ['toolkit_views==1', {
+ 'targets': [
+ {
+ 'target_name': 'app_list_demo',
+ 'type': 'executable',
+ 'sources': [
+ '../../content/app/startup_helper_win.cc',
+ 'views/app_list_demo.cc',
+ ],
+ 'dependencies': [
+ '../../base/base.gyp:base',
+ '../../content/content.gyp:content',
+ '../../skia/skia.gyp:skia',
+ '../../url/url.gyp:url_lib',
+ '../base/ui_base.gyp:ui_base',
+ '../events/events.gyp:events',
+ '../resources/ui_resources.gyp:ui_resources',
+ '../resources/ui_resources.gyp:ui_test_pak',
+ '../views/views.gyp:views',
+ '../views_content_client/views_content_client.gyp:views_content_client',
+ 'app_list',
+ 'app_list_test_support',
+ ],
+ 'conditions': [
+ ['OS=="win"', {
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
+ },
+ },
+ 'dependencies': [
+ '../../sandbox/sandbox.gyp:sandbox',
+ ],
+ }],
+ ],
+ },
+ ],
+ }], # toolkit_views==1
+ ],
}
« no previous file with comments | « no previous file | ui/app_list/views/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698