| Index: third_party/google_toolbox_for_mac/google_toolbox_for_mac.gyp
|
| diff --git a/third_party/google_toolbox_for_mac/google_toolbox_for_mac.gyp b/third_party/google_toolbox_for_mac/google_toolbox_for_mac.gyp
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ff21dbac6e2083cc2979509e91238fc968a57c8e
|
| --- /dev/null
|
| +++ b/third_party/google_toolbox_for_mac/google_toolbox_for_mac.gyp
|
| @@ -0,0 +1,63 @@
|
| +# Copyright 2013 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +{
|
| + 'targets': [
|
| + {
|
| + 'target_name': 'google_toolbox_for_mac',
|
| + 'type': '<(component)',
|
| + 'include_dirs': [
|
| + '../..',
|
| + '../google_toolbox_for_mac',
|
| + '../google_toolbox_for_mac/AppKit',
|
| + '../google_toolbox_for_mac/DebugUtils',
|
| + '../google_toolbox_for_mac/Foundation',
|
| + ],
|
| + 'link_settings': {
|
| + 'libraries': [
|
| + '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework',
|
| + '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
|
| + ],
|
| + },
|
| + 'sources': [
|
| + 'AppKit/GTMFadeTruncatingTextFieldCell.h',
|
| + 'AppKit/GTMFadeTruncatingTextFieldCell.m',
|
| + 'AppKit/GTMIBArray.h',
|
| + 'AppKit/GTMIBArray.m',
|
| + 'AppKit/GTMKeyValueAnimation.h',
|
| + 'AppKit/GTMKeyValueAnimation.m',
|
| + 'AppKit/GTMNSAnimation+Duration.h',
|
| + 'AppKit/GTMNSAnimation+Duration.m',
|
| + 'AppKit/GTMNSBezierPath+CGPath.h',
|
| + 'AppKit/GTMNSBezierPath+CGPath.m',
|
| + 'AppKit/GTMNSBezierPath+RoundRect.h',
|
| + 'AppKit/GTMNSBezierPath+RoundRect.m',
|
| + 'AppKit/GTMNSColor+Luminance.m',
|
| + 'AppKit/GTMUILocalizer.h',
|
| + 'AppKit/GTMUILocalizer.m',
|
| + 'AppKit/GTMUILocalizerAndLayoutTweaker.h',
|
| + 'AppKit/GTMUILocalizerAndLayoutTweaker.m',
|
| + 'Foundation/GTMNSNumber+64Bit.h',
|
| + 'Foundation/GTMNSNumber+64Bit.m',
|
| + 'Foundation/GTMNSObject+KeyValueObserving.h',
|
| + 'Foundation/GTMNSObject+KeyValueObserving.m',
|
| + ],
|
| + 'conditions': [
|
| + ['component=="shared_library"',
|
| + {
|
| + # GTM is third-party code, so we don't want to add _EXPORT
|
| + # annotations to it, so build it without -fvisibility=hidden
|
| + # (else the interface class symbols will be hidden in a 64bit
|
| + # build). Only do this in a component build, so that the shipping
|
| + # chrome binary doesn't end up with unnecessarily exported
|
| + # symbols.
|
| + 'xcode_settings': {
|
| + 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO',
|
| + },
|
| + }
|
| + ],
|
| + ],
|
| + },
|
| + ],
|
| +}
|
|
|