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

Side by Side Diff: skia/skia.gyp

Issue 10535059: Remove -F…ApplicationServices.framework/Frameworks (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 6 months 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
« no previous file with comments | « chrome/browser/idle_mac.mm ('k') | ui/gfx/rect.cc » ('j') | 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'skia', 8 'target_name': 'skia',
9 'type': '<(component)', 9 'type': '<(component)',
10 'variables': { 10 'variables': {
(...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after
782 '../third_party/skia/include/images', 782 '../third_party/skia/include/images',
783 '../third_party/skia/include/pdf', 783 '../third_party/skia/include/pdf',
784 '../third_party/skia/include/ports', 784 '../third_party/skia/include/ports',
785 '../third_party/skia/include/utils', 785 '../third_party/skia/include/utils',
786 '../third_party/skia/src/core', 786 '../third_party/skia/src/core',
787 '../third_party/skia/src/gpu', 787 '../third_party/skia/src/gpu',
788 '../third_party/skia/src/sfnt', 788 '../third_party/skia/src/sfnt',
789 '../third_party/skia/src/utils', 789 '../third_party/skia/src/utils',
790 ], 790 ],
791 'msvs_disabled_warnings': [4244, 4267, 4341, 4345, 4390, 4554, 4800], 791 'msvs_disabled_warnings': [4244, 4267, 4341, 4345, 4390, 4554, 4800],
792 'mac_framework_dirs': [
793 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Fram eworks',
794 ],
795 'defines': [ 792 'defines': [
796 'SK_BUILD_NO_IMAGE_ENCODE', 793 'SK_BUILD_NO_IMAGE_ENCODE',
797 'GR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"', 794 'GR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"',
798 'GR_STATIC_RECT_VB=1', 795 'GR_STATIC_RECT_VB=1',
799 'GR_AGGRESSIVE_SHADER_OPTS=1', 796 'GR_AGGRESSIVE_SHADER_OPTS=1',
800 'SK_DISABLE_FAST_AA_STROKE_RECT', 797 'SK_DISABLE_FAST_AA_STROKE_RECT',
801 'SK_DEFAULT_FONT_CACHE_LIMIT=(20*1024*1024)', 798 'SK_DEFAULT_FONT_CACHE_LIMIT=(20*1024*1024)',
802 799
803 # temporary for landing Skia rev 3077 with minimal layout test breakage 800 # temporary for landing Skia rev 3077 with minimal layout test breakage
804 'SK_SIMPLE_TWOCOLOR_VERTICAL_GRADIENTS', 801 'SK_SIMPLE_TWOCOLOR_VERTICAL_GRADIENTS',
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
1049 '../third_party/skia/include/config', 1046 '../third_party/skia/include/config',
1050 '../third_party/skia/include/core', 1047 '../third_party/skia/include/core',
1051 '../third_party/skia/include/effects', 1048 '../third_party/skia/include/effects',
1052 '../third_party/skia/include/pdf', 1049 '../third_party/skia/include/pdf',
1053 '../third_party/skia/include/gpu', 1050 '../third_party/skia/include/gpu',
1054 '../third_party/skia/include/gpu/gl', 1051 '../third_party/skia/include/gpu/gl',
1055 '../third_party/skia/include/ports', 1052 '../third_party/skia/include/ports',
1056 '../third_party/skia/include/utils', 1053 '../third_party/skia/include/utils',
1057 'ext', 1054 'ext',
1058 ], 1055 ],
1059 'mac_framework_dirs': [
1060 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Fr ameworks',
1061 ],
1062 'defines': [ 1056 'defines': [
1063 'SK_BUILD_NO_IMAGE_ENCODE', 1057 'SK_BUILD_NO_IMAGE_ENCODE',
1064 'GR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"', 1058 'GR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"',
1065 'GR_AGGRESSIVE_SHADER_OPTS=1', 1059 'GR_AGGRESSIVE_SHADER_OPTS=1',
1066 ], 1060 ],
1067 'conditions': [ 1061 'conditions': [
1068 ['OS=="android"', { 1062 ['OS=="android"', {
1069 'defines': [ 1063 'defines': [
1070 'SK_BUILD_FOR_ANDROID_NDK', 1064 'SK_BUILD_FOR_ANDROID_NDK',
1071 ], 1065 ],
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
1284 ], 1278 ],
1285 'include_dirs': [ 1279 'include_dirs': [
1286 '..', 1280 '..',
1287 ], 1281 ],
1288 'sources': [ 1282 'sources': [
1289 'ext/image_operations_bench.cc', 1283 'ext/image_operations_bench.cc',
1290 ], 1284 ],
1291 }, 1285 },
1292 ], 1286 ],
1293 } 1287 }
OLDNEW
« no previous file with comments | « chrome/browser/idle_mac.mm ('k') | ui/gfx/rect.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698