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

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: check it in third_party/google_toolbox_for_mac 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
« DEPS ('K') | « ui/message_center/message_center.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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after
624 'android/java/src/org/chromium/ui/base/WindowAndroid.java', 624 'android/java/src/org/chromium/ui/base/WindowAndroid.java',
625 ], 625 ],
626 'variables': { 626 'variables': {
627 'jni_gen_package': 'ui', 627 'jni_gen_package': 'ui',
628 'jni_generator_ptr_type': 'long', 628 'jni_generator_ptr_type': 'long',
629 }, 629 },
630 'includes': [ '../build/jni_generator.gypi' ], 630 'includes': [ '../build/jni_generator.gypi' ],
631 }, 631 },
632 ], 632 ],
633 }], 633 }],
634 ['OS=="mac"', {
635 'targets': [
636 {
637 'target_name': 'ui_cocoa_third_party_toolkits',
638 'type': '<(component)',
639 'sources': [
640 # Build the necessary GTM sources
641 '../third_party/GTM/AppKit/GTMFadeTruncatingTextFieldCell.h',
642 '../third_party/GTM/AppKit/GTMFadeTruncatingTextFieldCell.m',
643 '../third_party/GTM/AppKit/GTMIBArray.h',
644 '../third_party/GTM/AppKit/GTMIBArray.m',
645 '../third_party/GTM/AppKit/GTMKeyValueAnimation.h',
646 '../third_party/GTM/AppKit/GTMKeyValueAnimation.m',
647 '../third_party/GTM/AppKit/GTMNSAnimation+Duration.h',
648 '../third_party/GTM/AppKit/GTMNSAnimation+Duration.m',
649 '../third_party/GTM/AppKit/GTMNSBezierPath+CGPath.h',
650 '../third_party/GTM/AppKit/GTMNSBezierPath+CGPath.m',
651 '../third_party/GTM/AppKit/GTMNSBezierPath+RoundRect.h',
652 '../third_party/GTM/AppKit/GTMNSBezierPath+RoundRect.m',
653 '../third_party/GTM/AppKit/GTMNSColor+Luminance.m',
654 '../third_party/GTM/AppKit/GTMUILocalizer.h',
655 '../third_party/GTM/AppKit/GTMUILocalizer.m',
656 '../third_party/GTM/AppKit/GTMUILocalizerAndLayoutTweaker.h',
657 '../third_party/GTM/AppKit/GTMUILocalizerAndLayoutTweaker.m',
658 '../third_party/GTM/Foundation/GTMNSNumber+64Bit.h',
659 '../third_party/GTM/Foundation/GTMNSNumber+64Bit.m',
660 '../third_party/GTM/Foundation/GTMNSObject+KeyValueObserving.h',
661 '../third_party/GTM/Foundation/GTMNSObject+KeyValueObserving.m',
662 ],
663 'include_dirs': [
664 '..',
665 '../third_party/GTM',
666 '../third_party/GTM/AppKit',
667 '../third_party/GTM/DebugUtils',
668 '../third_party/GTM/Foundation',
669 ],
670 'link_settings': {
671 'libraries': [
672 '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework',
673 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
674 ],
675 },
676 'conditions': [
677 ['component=="shared_library"', {
678 # GTM is third-party code, so we don't want to add _EXPORT
679 # annotations to it, so build it without -fvisibility=hidden
680 # (else the interface class symbols will be hidden in a 64bit
681 # build). Only do this in a component build, so that the shipping
682 # chrome binary doesn't end up with unnecessarily exported
683 # symbols.
684 'xcode_settings': {
685 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO',
686 },
687 }],
688 ],
689 },
690 ],
691 }],
692 ], 634 ],
693 } 635 }
OLDNEW
« DEPS ('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