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

Side by Side Diff: gyp/experimental.gyp

Issue 1950353002: experimental/tools/coreGraphicsPdf2png: remove skia dependency (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 7 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
« no previous file with comments | « experimental/tools/coreGraphicsPdf2png.cpp ('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 2015 Google Inc. 1 # Copyright 2015 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # GYP file to build experimental directory. 5 # GYP file to build experimental directory.
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'experimental', 9 'target_name': 'experimental',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 13 matching lines...) Expand all
24 }, 24 },
25 }, 25 },
26 ], 26 ],
27 'conditions': [ 27 'conditions': [
28 ['skia_os == "mac"', 28 ['skia_os == "mac"',
29 { 29 {
30 'targets': [ 30 'targets': [
31 { 31 {
32 'target_name': 'coreGraphicsPdf2png', 32 'target_name': 'coreGraphicsPdf2png',
33 'type': 'executable', 33 'type': 'executable',
34 'include_dirs': [ '../src/core', ],
35 'sources': [ '../experimental/tools/coreGraphicsPdf2png.cpp', ], 34 'sources': [ '../experimental/tools/coreGraphicsPdf2png.cpp', ],
36 'dependencies': [ 'skia_lib.gyp:skia_lib', 'libpng.gyp:libpng', ], 35 'link_settings': {
36 'libraries': [
37 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framew ork',
38 ],
39 },
37 }, 40 },
38 ], 41 ],
39 }, 42 },
40 ], 43 ],
41 ], 44 ],
42 } 45 }
OLDNEW
« no previous file with comments | « experimental/tools/coreGraphicsPdf2png.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698