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

Side by Side Diff: ash/ash.gyp

Issue 10054038: Support WebView in ash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 8 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 | « no previous file | ash/shell.h » ('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 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', 8 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome',
9 }, 9 },
10 10
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 }], 413 }],
414 ], 414 ],
415 }, 415 },
416 { 416 {
417 'target_name': 'ash_shell', 417 'target_name': 'ash_shell',
418 'type': 'executable', 418 'type': 'executable',
419 'dependencies': [ 419 'dependencies': [
420 '../base/base.gyp:base', 420 '../base/base.gyp:base',
421 '../base/base.gyp:base_i18n', 421 '../base/base.gyp:base_i18n',
422 '../chrome/chrome_resources.gyp:packed_resources', 422 '../chrome/chrome_resources.gyp:packed_resources',
423 '../content/content.gyp:content_shell_lib',
424 '../content/content.gyp:content',
423 '../skia/skia.gyp:skia', 425 '../skia/skia.gyp:skia',
424 '../third_party/icu/icu.gyp:icui18n', 426 '../third_party/icu/icu.gyp:icui18n',
425 '../third_party/icu/icu.gyp:icuuc', 427 '../third_party/icu/icu.gyp:icuuc',
426 '../ui/aura/aura.gyp:aura', 428 '../ui/aura/aura.gyp:aura',
427 '../ui/gfx/compositor/compositor.gyp:compositor', 429 '../ui/gfx/compositor/compositor.gyp:compositor',
428 '../ui/gfx/compositor/compositor.gyp:compositor_test_support', 430 '../ui/gfx/compositor/compositor.gyp:compositor_test_support',
429 '../ui/ui.gyp:gfx_resources', 431 '../ui/ui.gyp:gfx_resources',
430 '../ui/ui.gyp:ui', 432 '../ui/ui.gyp:ui',
431 '../ui/ui.gyp:ui_resources', 433 '../ui/ui.gyp:ui_resources',
432 '../ui/ui.gyp:ui_resources_standard', 434 '../ui/ui.gyp:ui_resources_standard',
433 '../ui/views/views.gyp:views', 435 '../ui/views/views.gyp:views',
434 '../ui/views/views.gyp:views_examples_lib', 436 '../ui/views/views.gyp:views_examples_lib',
435 'ash', 437 'ash',
436 ], 438 ],
437 'sources': [ 439 'sources': [
438 'shell/app_list.cc', 440 'shell/app_list.cc',
439 'shell/bubble.cc', 441 'shell/bubble.cc',
442 'shell/content_client/shell_browser_main_parts.cc',
443 'shell/content_client/shell_browser_main_parts.h',
444 'shell/content_client/shell_content_browser_client.cc',
445 'shell/content_client/shell_content_browser_client.h',
446 'shell/content_client/shell_main_delegate.cc',
447 'shell/content_client/shell_main_delegate.h',
440 'shell/example_factory.h', 448 'shell/example_factory.h',
441 'shell/launcher_delegate_impl.cc', 449 'shell/launcher_delegate_impl.cc',
442 'shell/launcher_delegate_impl.h', 450 'shell/launcher_delegate_impl.h',
443 'shell/lock_view.cc', 451 'shell/lock_view.cc',
444 'shell/panel_window.cc', 452 'shell/panel_window.cc',
445 'shell/panel_window.h', 453 'shell/panel_window.h',
446 'shell/shell_delegate_impl.cc', 454 'shell/shell_delegate_impl.cc',
447 'shell/shell_delegate_impl.h', 455 'shell/shell_delegate_impl.h',
448 'shell/shell_main.cc', 456 'shell/shell_main.cc',
449 'shell/shell_main_parts.cc', 457 'shell/shell_main_parts.cc',
450 'shell/shell_main_parts.h', 458 'shell/shell_main_parts.h',
451 'shell/shell_main_parts_mac.mm', 459 'shell/shell_main_parts_mac.mm',
452 'shell/toplevel_window.cc', 460 'shell/toplevel_window.cc',
453 'shell/toplevel_window.h', 461 'shell/toplevel_window.h',
454 'shell/widgets.cc', 462 'shell/widgets.cc',
455 'shell/window_type_launcher.cc', 463 'shell/window_type_launcher.cc',
456 'shell/window_type_launcher.h', 464 'shell/window_type_launcher.h',
457 'shell/window_watcher.cc', 465 'shell/window_watcher.cc',
458 'shell/window_watcher.h', 466 'shell/window_watcher.h',
459 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', 467 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc',
460 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa rd.rc', 468 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa rd.rc',
461 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', 469 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc',
470 '../content/app/startup_helper_win.cc',
462 '../ui/views/test/test_views_delegate.cc', 471 '../ui/views/test/test_views_delegate.cc',
463 ], 472 ],
464 'conditions': [ 473 'conditions': [
474 ['OS=="win"', {
475 'msvs_settings': {
476 'VCLinkerTool': {
477 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
478 },
479 },
480 'dependencies': [
481 '../sandbox/sandbox.gyp:sandbox',
482 ],
483 }],
465 ['OS=="mac"', { 484 ['OS=="mac"', {
466 'product_name': 'AuraShell', 485 'product_name': 'AuraShell',
467 'mac_bundle': 1, 486 'mac_bundle': 1,
468 'sources/': [ 487 'sources/': [
469 ['exclude', 'shell/shell_main_parts.cc'], 488 ['exclude', 'shell/shell_main_parts.cc'],
470 ], 489 ],
471 'mac_bundle_resources': [ 490 'mac_bundle_resources': [
472 'shell/cocoa/app.icns', 491 'shell/cocoa/app.icns',
473 'shell/cocoa/app-Info.plist', 492 'shell/cocoa/app-Info.plist',
474 'shell/cocoa/nibs/MainMenu.xib', 493 'shell/cocoa/nibs/MainMenu.xib',
475 'shell/cocoa/nibs/RootWindow.xib', 494 'shell/cocoa/nibs/RootWindow.xib',
476 '<(SHARED_INTERMEDIATE_DIR)/repack/chrome.pak', 495 '<(SHARED_INTERMEDIATE_DIR)/repack/chrome.pak',
477 '<!@pymod_do_main(repack_locales -o -g <(grit_out_dir) -s <(SHARED_I NTERMEDIATE_DIR) -x <(SHARED_INTERMEDIATE_DIR) <(locales))', 496 '<!@pymod_do_main(repack_locales -o -g <(grit_out_dir) -s <(SHARED_I NTERMEDIATE_DIR) -x <(SHARED_INTERMEDIATE_DIR) <(locales))',
478 ], 497 ],
479 'mac_bundle_resources!': [ 498 'mac_bundle_resources!': [
480 'shell/cocoa/app-Info.plist', 499 'shell/cocoa/app-Info.plist',
481 ], 500 ],
482 'xcode_settings': { 501 'xcode_settings': {
483 'INFOPLIST_FILE': 'shell/cocoa/app-Info.plist', 502 'INFOPLIST_FILE': 'shell/cocoa/app-Info.plist',
484 }, 503 },
485 }], 504 }],
486 ], 505 ],
487 }, 506 },
488 ], 507 ],
489 } 508 }
OLDNEW
« no previous file with comments | « no previous file | ash/shell.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698