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

Side by Side Diff: gyp/xml.gyp

Issue 1707213002: Move SkTDArray to private. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 10 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/core.gypi ('k') | include/core/SkClipStack.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': 'xml', 8 'target_name': 'xml',
9 'product_name': 'skia_xml', 9 'product_name': 'skia_xml',
10 'type': 'static_library', 10 'type': 'static_library',
11 'standalone_static_library': 1, 11 'standalone_static_library': 1,
12 'dependencies': [ 12 'dependencies': [
13 'skia_lib.gyp:skia_lib', 13 'skia_lib.gyp:skia_lib',
14 ], 14 ],
15 'include_dirs': [ 15 'include_dirs': [
16 '../include/private',
16 '../include/xml', 17 '../include/xml',
17 ], 18 ],
18 'sources': [ 19 'sources': [
19 '../include/xml/SkBML_WXMLParser.h', 20 '../include/xml/SkBML_WXMLParser.h',
20 '../include/xml/SkBML_XMLParser.h', 21 '../include/xml/SkBML_XMLParser.h',
21 '../include/xml/SkDOM.h', 22 '../include/xml/SkDOM.h',
22 '../include/xml/SkXMLParser.h', 23 '../include/xml/SkXMLParser.h',
23 '../include/xml/SkXMLWriter.h', 24 '../include/xml/SkXMLWriter.h',
24 25
25 '../src/xml/SkBML_Verbs.h', 26 '../src/xml/SkBML_Verbs.h',
26 '../src/xml/SkBML_XMLParser.cpp', 27 '../src/xml/SkBML_XMLParser.cpp',
27 '../src/xml/SkDOM.cpp', 28 '../src/xml/SkDOM.cpp',
28 '../src/xml/SkXMLParser.cpp', 29 '../src/xml/SkXMLParser.cpp',
29 '../src/xml/SkXMLPullParser.cpp', 30 '../src/xml/SkXMLPullParser.cpp',
30 '../src/xml/SkXMLWriter.cpp', 31 '../src/xml/SkXMLWriter.cpp',
31 ], 32 ],
32 'sources!': [ 33 'sources!': [
33 '../src/xml/SkXMLPullParser.cpp', #if 0 around class decl in header 34 '../src/xml/SkXMLPullParser.cpp', #if 0 around class decl in header
34 ], 35 ],
35 'direct_dependent_settings': { 36 'direct_dependent_settings': {
36 'include_dirs': [ 37 'include_dirs': [
37 '../include/xml', 38 '../include/xml',
38 ], 39 ],
39 }, 40 },
40 }, 41 },
41 ], 42 ],
42 } 43 }
OLDNEW
« no previous file with comments | « gyp/core.gypi ('k') | include/core/SkClipStack.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698