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

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

Issue 284113011: Repurpose views+content example into a generic multiprocess views runtime (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: app_list_demo.cc using example_main 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/app_list/DEPS ('k') | ui/app_list/views/app_list_demo.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 ['OS=="win" and win_use_allocator_shim==1', { 273 ['OS=="win" and win_use_allocator_shim==1', {
274 'dependencies': [ 274 'dependencies': [
275 '../../base/allocator/allocator.gyp:allocator', 275 '../../base/allocator/allocator.gyp:allocator',
276 ], 276 ],
277 }], 277 }],
278 ], 278 ],
279 # Disable c4267 warnings until we fix size_t to int truncations. 279 # Disable c4267 warnings until we fix size_t to int truncations.
280 'msvs_disabled_warnings': [ 4267, ], 280 'msvs_disabled_warnings': [ 4267, ],
281 }, 281 },
282 ], 282 ],
283 'conditions': [
284 ['toolkit_views==1', {
285 'targets': [
286 {
287 'target_name': 'app_list_demo',
288 'type': 'executable',
289 'sources': [
290 'views/app_list_demo.cc',
291 ],
292 'dependencies': [
293 '../../base/base.gyp:base',
294 '../../content/content.gyp:content',
295 '../../skia/skia.gyp:skia',
296 '../base/ui_base.gyp:ui_base',
297 '../resources/ui_resources.gyp:ui_resources',
298 '../resources/ui_resources.gyp:ui_test_pak',
299 '../views/examples/examples.gyp:views_examples_with_content_lib',
300 '../views/views.gyp:views',
301 'app_list',
302 'app_list_test_support',
303 ],
304 },
305 ],
306 }], # toolkit_views==1
307 ],
283 } 308 }
OLDNEW
« no previous file with comments | « ui/app_list/DEPS ('k') | ui/app_list/views/app_list_demo.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698