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

Side by Side Diff: ui/ui.gyp

Issue 107933006: Get rid of ui_cocoa_third_party_toolkits target from ui.gyp (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ADD README.chromium Created 7 years 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
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 620 matching lines...) Expand 10 before | Expand all | Expand 10 after
631 'android/java/src/org/chromium/ui/base/WindowAndroid.java', 631 'android/java/src/org/chromium/ui/base/WindowAndroid.java',
632 ], 632 ],
633 'variables': { 633 'variables': {
634 'jni_gen_package': 'ui', 634 'jni_gen_package': 'ui',
635 'jni_generator_ptr_type': 'long', 635 'jni_generator_ptr_type': 'long',
636 }, 636 },
637 'includes': [ '../build/jni_generator.gypi' ], 637 'includes': [ '../build/jni_generator.gypi' ],
638 }, 638 },
639 ], 639 ],
640 }], 640 }],
641 ['OS=="mac"', {
642 'targets': [
643 {
644 'target_name': 'ui_cocoa_third_party_toolkits',
645 'type': '<(component)',
646 'sources': [
647 # Build the necessary GTM sources
648 '../third_party/GTM/AppKit/GTMFadeTruncatingTextFieldCell.h',
649 '../third_party/GTM/AppKit/GTMFadeTruncatingTextFieldCell.m',
650 '../third_party/GTM/AppKit/GTMIBArray.h',
651 '../third_party/GTM/AppKit/GTMIBArray.m',
652 '../third_party/GTM/AppKit/GTMKeyValueAnimation.h',
653 '../third_party/GTM/AppKit/GTMKeyValueAnimation.m',
654 '../third_party/GTM/AppKit/GTMNSAnimation+Duration.h',
655 '../third_party/GTM/AppKit/GTMNSAnimation+Duration.m',
656 '../third_party/GTM/AppKit/GTMNSBezierPath+CGPath.h',
657 '../third_party/GTM/AppKit/GTMNSBezierPath+CGPath.m',
658 '../third_party/GTM/AppKit/GTMNSBezierPath+RoundRect.h',
659 '../third_party/GTM/AppKit/GTMNSBezierPath+RoundRect.m',
660 '../third_party/GTM/AppKit/GTMNSColor+Luminance.m',
661 '../third_party/GTM/AppKit/GTMUILocalizer.h',
662 '../third_party/GTM/AppKit/GTMUILocalizer.m',
663 '../third_party/GTM/AppKit/GTMUILocalizerAndLayoutTweaker.h',
664 '../third_party/GTM/AppKit/GTMUILocalizerAndLayoutTweaker.m',
665 '../third_party/GTM/Foundation/GTMNSNumber+64Bit.h',
666 '../third_party/GTM/Foundation/GTMNSNumber+64Bit.m',
667 '../third_party/GTM/Foundation/GTMNSObject+KeyValueObserving.h',
668 '../third_party/GTM/Foundation/GTMNSObject+KeyValueObserving.m',
669 ],
670 'include_dirs': [
671 '..',
672 '../third_party/GTM',
673 '../third_party/GTM/AppKit',
674 '../third_party/GTM/DebugUtils',
675 '../third_party/GTM/Foundation',
676 ],
677 'link_settings': {
678 'libraries': [
679 '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework',
680 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
681 ],
682 },
683 'conditions': [
684 ['component=="shared_library"', {
685 # GTM is third-party code, so we don't want to add _EXPORT
686 # annotations to it, so build it without -fvisibility=hidden
687 # (else the interface class symbols will be hidden in a 64bit
688 # build). Only do this in a component build, so that the shipping
689 # chrome binary doesn't end up with unnecessarily exported
690 # symbols.
691 'xcode_settings': {
692 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO',
693 },
694 }],
695 ],
696 },
697 ],
698 }],
699 ], 641 ],
700 } 642 }
OLDNEW
« ui/app_list/cocoa/signin_view_controller.mm ('K') | « ui/message_center/message_center.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698