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

Side by Side Diff: ui/ui.gyp

Issue 100713005: Add gyp file to build third_party/molokocacao. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 641 matching lines...) Expand 10 before | Expand all | Expand 10 after
652 '../third_party/GTM/AppKit/GTMNSBezierPath+RoundRect.m', 652 '../third_party/GTM/AppKit/GTMNSBezierPath+RoundRect.m',
653 '../third_party/GTM/AppKit/GTMNSColor+Luminance.m', 653 '../third_party/GTM/AppKit/GTMNSColor+Luminance.m',
654 '../third_party/GTM/AppKit/GTMUILocalizer.h', 654 '../third_party/GTM/AppKit/GTMUILocalizer.h',
655 '../third_party/GTM/AppKit/GTMUILocalizer.m', 655 '../third_party/GTM/AppKit/GTMUILocalizer.m',
656 '../third_party/GTM/AppKit/GTMUILocalizerAndLayoutTweaker.h', 656 '../third_party/GTM/AppKit/GTMUILocalizerAndLayoutTweaker.h',
657 '../third_party/GTM/AppKit/GTMUILocalizerAndLayoutTweaker.m', 657 '../third_party/GTM/AppKit/GTMUILocalizerAndLayoutTweaker.m',
658 '../third_party/GTM/Foundation/GTMNSNumber+64Bit.h', 658 '../third_party/GTM/Foundation/GTMNSNumber+64Bit.h',
659 '../third_party/GTM/Foundation/GTMNSNumber+64Bit.m', 659 '../third_party/GTM/Foundation/GTMNSNumber+64Bit.m',
660 '../third_party/GTM/Foundation/GTMNSObject+KeyValueObserving.h', 660 '../third_party/GTM/Foundation/GTMNSObject+KeyValueObserving.h',
661 '../third_party/GTM/Foundation/GTMNSObject+KeyValueObserving.m', 661 '../third_party/GTM/Foundation/GTMNSObject+KeyValueObserving.m',
662 # MolokoCacao additions
663 '../third_party/molokocacao/NSBezierPath+MCAdditions.h',
664 '../third_party/molokocacao/NSBezierPath+MCAdditions.m',
665 ], 662 ],
666 'include_dirs': [ 663 'include_dirs': [
667 '..', 664 '..',
668 '../third_party/apple',
669 '../third_party/GTM', 665 '../third_party/GTM',
670 '../third_party/GTM/AppKit', 666 '../third_party/GTM/AppKit',
671 '../third_party/GTM/DebugUtils', 667 '../third_party/GTM/DebugUtils',
672 '../third_party/GTM/Foundation', 668 '../third_party/GTM/Foundation',
673 ], 669 ],
674 'link_settings': { 670 'link_settings': {
675 'libraries': [ 671 'libraries': [
676 '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework', 672 '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework',
677 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', 673 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
678 ], 674 ],
679 }, 675 },
680 'conditions': [ 676 'conditions': [
681 ['component=="shared_library"', { 677 ['component=="shared_library"', {
682 # GTM is third-party code, so we don't want to add _EXPORT 678 # GTM is third-party code, so we don't want to add _EXPORT
683 # annotations to it, so build it without -fvisibility=hidden 679 # annotations to it, so build it without -fvisibility=hidden
684 # (else the interface class symbols will be hidden in a 64bit 680 # (else the interface class symbols will be hidden in a 64bit
685 # build). Only do this in a component build, so that the shipping 681 # build). Only do this in a component build, so that the shipping
686 # chrome binary doesn't end up with unnecessarily exported 682 # chrome binary doesn't end up with unnecessarily exported
687 # symbols. 683 # symbols.
688 'xcode_settings': { 684 'xcode_settings': {
689 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', 685 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO',
690 }, 686 },
691 }], 687 }],
692 ], 688 ],
693 }, 689 },
694 ], 690 ],
695 }], 691 }],
696 ], 692 ],
697 } 693 }
OLDNEW
« third_party/molokocacao/molokocacao.gyp ('K') | « third_party/molokocacao/molokocacao.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698