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

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

Issue 10855119: views: Put 'with_content' in views_examples targets. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 | « ash/ash.gyp ('k') | no next file » | 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 }, 7 },
8 8
9 'target_defaults': { 9 'target_defaults': {
10 'conditions': [ 10 'conditions': [
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after
582 }, { 582 }, {
583 'sources/': [ 583 'sources/': [
584 ['exclude', '../aura/test/test_desktop_delegate.cc'], 584 ['exclude', '../aura/test/test_desktop_delegate.cc'],
585 ['exclude', '../aura/test/test_desktop_delegate.h'], 585 ['exclude', '../aura/test/test_desktop_delegate.h'],
586 ['exclude', 'widget/native_widget_aura_unittest.cc'], 586 ['exclude', 'widget/native_widget_aura_unittest.cc'],
587 ], 587 ],
588 }], 588 }],
589 ], 589 ],
590 }, # target_name: views_unittests 590 }, # target_name: views_unittests
591 { 591 {
592 'target_name': 'views_examples_lib', 592 'target_name': 'views_examples_with_content_lib',
593 'type': 'static_library', 593 'type': 'static_library',
594 'dependencies': [ 594 'dependencies': [
595 '../../base/base.gyp:base', 595 '../../base/base.gyp:base',
596 '../../base/base.gyp:base_i18n', 596 '../../base/base.gyp:base_i18n',
597 '../../build/temp_gyp/googleurl.gyp:googleurl', 597 '../../build/temp_gyp/googleurl.gyp:googleurl',
598 '../../chrome/chrome_resources.gyp:packed_resources', 598 '../../chrome/chrome_resources.gyp:packed_resources',
599 '../../content/content.gyp:content', 599 '../../content/content.gyp:content',
600 '../../skia/skia.gyp:skia', 600 '../../skia/skia.gyp:skia',
601 '../../third_party/icu/icu.gyp:icui18n', 601 '../../third_party/icu/icu.gyp:icui18n',
602 '../../third_party/icu/icu.gyp:icuuc', 602 '../../third_party/icu/icu.gyp:icuuc',
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
662 'examples/widget_example.cc', 662 'examples/widget_example.cc',
663 'examples/widget_example.h', 663 'examples/widget_example.h',
664 ], 664 ],
665 'conditions': [ 665 'conditions': [
666 ['OS=="win"', { 666 ['OS=="win"', {
667 'include_dirs': [ 667 'include_dirs': [
668 '../third_party/wtl/include', 668 '../third_party/wtl/include',
669 ], 669 ],
670 }], 670 }],
671 ], 671 ],
672 }, # target_name: views_examples_lib 672 }, # target_name: views_examples_with_content_lib
673 { 673 {
674 'target_name': 'views_examples_exe', 674 'target_name': 'views_examples_with_content_exe',
675 'type': 'executable', 675 'type': 'executable',
676 'dependencies': [ 676 'dependencies': [
677 '../../base/base.gyp:base', 677 '../../base/base.gyp:base',
678 '../../base/base.gyp:base_i18n', 678 '../../base/base.gyp:base_i18n',
679 '../../chrome/chrome_resources.gyp:packed_resources', 679 '../../chrome/chrome_resources.gyp:packed_resources',
680 '../../content/content.gyp:content_shell_lib', 680 '../../content/content.gyp:content_shell_lib',
681 '../../content/content.gyp:content', 681 '../../content/content.gyp:content',
682 '../../content/content.gyp:test_support_content', 682 '../../content/content.gyp:test_support_content',
683 '../../skia/skia.gyp:skia', 683 '../../skia/skia.gyp:skia',
684 '../../third_party/icu/icu.gyp:icui18n', 684 '../../third_party/icu/icu.gyp:icui18n',
685 '../../third_party/icu/icu.gyp:icuuc', 685 '../../third_party/icu/icu.gyp:icuuc',
686 '../ui.gyp:ui', 686 '../ui.gyp:ui',
687 '../ui.gyp:ui_resources', 687 '../ui.gyp:ui_resources',
688 'views_examples_lib', 688 'views_examples_with_content_lib',
689 ], 689 ],
690 'include_dirs': [ 690 'include_dirs': [
691 '../..', 691 '../..',
692 ], 692 ],
693 'sources': [ 693 'sources': [
694 '../../content/app/startup_helper_win.cc', 694 '../../content/app/startup_helper_win.cc',
695 'examples/content_client/examples_browser_main_parts.cc', 695 'examples/content_client/examples_browser_main_parts.cc',
696 'examples/content_client/examples_browser_main_parts.h', 696 'examples/content_client/examples_browser_main_parts.h',
697 'examples/content_client/examples_content_browser_client.cc', 697 'examples/content_client/examples_content_browser_client.cc',
698 'examples/content_client/examples_content_browser_client.h', 698 'examples/content_client/examples_content_browser_client.h',
(...skipping 30 matching lines...) Expand all
729 ], 729 ],
730 }], 730 }],
731 ['OS=="win"', { 731 ['OS=="win"', {
732 'sources/': [ 732 'sources/': [
733 # This is needed because the aura rule strips it from the default 733 # This is needed because the aura rule strips it from the default
734 # sources list. 734 # sources list.
735 ['include', '^../../content/app/startup_helper_win.cc'], 735 ['include', '^../../content/app/startup_helper_win.cc'],
736 ], 736 ],
737 }], 737 }],
738 ], 738 ],
739 }, # target_name: views_examples_lib 739 }, # target_name: views_examples_with_content_exe
740 ], 740 ],
741 } 741 }
OLDNEW
« no previous file with comments | « ash/ash.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698