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

Side by Side Diff: gyp/svg.gyp

Issue 2164193002: Initial SVG model (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: warning fix Created 4 years, 4 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 | « gyp/samples.gypi ('k') | include/xml/SkDOM.h » ('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 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'svg', 8 'target_name': 'svg',
9 'product_name': 'skia_svg', 9 'product_name': 'skia_svg',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 13 matching lines...) Expand all
24 '<(skia_src_path)/svg/SkSVGCanvas.cpp', 24 '<(skia_src_path)/svg/SkSVGCanvas.cpp',
25 '<(skia_src_path)/svg/SkSVGDevice.cpp', 25 '<(skia_src_path)/svg/SkSVGDevice.cpp',
26 '<(skia_src_path)/svg/SkSVGDevice.h', 26 '<(skia_src_path)/svg/SkSVGDevice.h',
27 ], 27 ],
28 'direct_dependent_settings': { 28 'direct_dependent_settings': {
29 'include_dirs': [ 29 'include_dirs': [
30 '../include/svg', 30 '../include/svg',
31 ], 31 ],
32 }, 32 },
33 }, 33 },
34 {
35 'target_name': 'svgdom',
36 'type': 'static_library',
37 'standalone_static_library': 1,
38 'dependencies': [
39 'skia_lib.gyp:skia_lib',
40 'xml.gyp:xml',
41 ],
42 'include_dirs': [
43 '<(skia_include_path)/private',
44 '../experimental/svg/model',
45 ],
46 'sources': [
47 '../experimental/svg/model/SkSVGAttribute.h',
48 '../experimental/svg/model/SkSVGAttribute.cpp',
49 '../experimental/svg/model/SkSVGContainer.h',
50 '../experimental/svg/model/SkSVGContainer.cpp',
51 '../experimental/svg/model/SkSVGDOM.h',
52 '../experimental/svg/model/SkSVGDOM.cpp',
53 '../experimental/svg/model/SkSVGG.h',
54 '../experimental/svg/model/SkSVGNode.h',
55 '../experimental/svg/model/SkSVGNode.cpp',
56 '../experimental/svg/model/SkSVGPath.h',
57 '../experimental/svg/model/SkSVGPath.cpp',
58 '../experimental/svg/model/SkSVGRenderContext.h',
59 '../experimental/svg/model/SkSVGRenderContext.cpp',
60 '../experimental/svg/model/SkSVGSVG.h',
61 '../experimental/svg/model/SkSVGSVG.cpp',
62 '../experimental/svg/model/SkSVGTransformableNode.h',
63 '../experimental/svg/model/SkSVGTransformableNode.cpp',
64 '../experimental/svg/model/SkSVGValue.h',
65 '../experimental/svg/model/SkSVGValue.cpp',
66 ],
67 'direct_dependent_settings': {
68 'include_dirs': [
69 '../experimental/svg/model',
70 ],
71 },
72 },
73
34 ], 74 ],
35 } 75 }
OLDNEW
« no previous file with comments | « gyp/samples.gypi ('k') | include/xml/SkDOM.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698