Commit 388c127a authored by tfarina@chromium.org's avatar tfarina@chromium.org

Add gyp file to build apple_sample_code.

This is a step forward on removing ui_cocoa_third_party_toolkits target
from ui.gyp.

BUG=299841
TEST=None
R=tapted@chromium.org,ben@chromium.org

Review URL: https://codereview.chromium.org/83073012

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@238215 0039d316-1c4b-4281-b951-d872f2087c98
parent 335bf6a0
...@@ -3150,6 +3150,7 @@ ...@@ -3150,6 +3150,7 @@
], ],
'dependencies': [ 'dependencies': [
'../ui/ui.gyp:ui_cocoa_third_party_toolkits', '../ui/ui.gyp:ui_cocoa_third_party_toolkits',
'../third_party/apple_sample_code/apple_sample_code.gyp:apple_sample_code',
], ],
'include_dirs': [ 'include_dirs': [
'../third_party/GTM', '../third_party/GTM',
......
# 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': 'apple_sample_code',
'type': 'static_library',
'link_settings': {
'libraries': [
'$(SDKROOT)/System/Library/Frameworks/AppKit.framework',
],
},
'sources': [
'ImageAndTextCell.h',
'ImageAndTextCell.m',
],
},
],
}
...@@ -634,9 +634,6 @@ ...@@ -634,9 +634,6 @@
'target_name': 'ui_cocoa_third_party_toolkits', 'target_name': 'ui_cocoa_third_party_toolkits',
'type': '<(component)', 'type': '<(component)',
'sources': [ 'sources': [
# Build Apple sample code
'../third_party/apple_sample_code/ImageAndTextCell.h',
'../third_party/apple_sample_code/ImageAndTextCell.m',
# Build the necessary GTM sources # Build the necessary GTM sources
'../third_party/GTM/AppKit/GTMFadeTruncatingTextFieldCell.h', '../third_party/GTM/AppKit/GTMFadeTruncatingTextFieldCell.h',
'../third_party/GTM/AppKit/GTMFadeTruncatingTextFieldCell.m', '../third_party/GTM/AppKit/GTMFadeTruncatingTextFieldCell.m',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment